Kaylx
Junior Member
 
United Kingdom
23 Posts |
Posted - Mar 01 2013 : 06:01:43 AM
|
Hi there,
Got a really strange problem, i don't think it's intentional, but every time i've used the forementioned feature it moves all the functions to the cpp file in reverse order. It's really annoying!
For example
class Foo { public: Foo(){} ~Foo(){} void bar1(){} void bar2(){} void bar3(){} }
becomes
void Foo::bar3(){} void Foo::bar2(){} void Foo::bar1(){} Foo::~Foo(){} Foo::Foo(){}
Please help. :-/ |
|
accord
Whole Tomato Software
    
United Kingdom
3287 Posts |
Posted - Mar 01 2013 : 2:29:08 PM
|
I wasn't able to reproduce the problem using VS2012 update 1 and VA1929.
What Visual Assist and Visual Studio versions are you using? What method of your sample class do you use the mentioned feature on? How do you trigger Change Signature? Right click, refactor menu or IDE VAssist -> Refactor menu? If you click on the class name, Foo, something similar will happen. But VA will display a dialog box with the method names first and you can accept or cancel the request here. Are you able to reproduce the problem using your sample class, in a clean new win32 test project? |
 |
|