What problems are you seeing with split windows? Off hand I am not aware of any problems with split windows, but not many of our users use them. I have run some basic tests and I am not seeing any problems, other than VA's enhanced syntax colouring is only fully applied to the current window.
For the code, I added a couple of member variables, giving me:
class MyType
{
private:
int b;
public:
MyType(int a)
try : b(a){
}
catch(...){
}
int getSize();
int getCount();
};
and VA's Create Implementation works perfectly on both "getSize()" and "getCount()" for me. It is a bit confused by the constructor, which is a known problem, but most things should still work correctly:
case=1867
Which problems are you having?
Dot being converted to ->, we have fixed one case where this problem occurs internally:
case=8300
When it is released this fix may help you. When I try typing:
void test(int a, ...)
into a cpp file the 3rd dot is left alone. A few other people have reported the same problem, but it is proving very hard to reproduce internally. It only seems to happen under very specific conditions.