Whole Tomato Software Forums
Whole Tomato Software Forums
Main Site | Profile | Register | Active Topics | Members | Search | FAQ
User name:
Password:
Save Password
Forgot your password?

 All Forums
 Visual Assist
 Technical Support
 Refactor - Move implementations to source ordering
 New Topic  Reply to Topic
 Printer Friendly
Author Previous Topic Topic Next Topic  

jdwiswall
New Member

5 Posts

Posted - Jul 08 2013 :  02:35:22 AM  Show Profile  Reply with Quote
When I do "move implementations to source file", the methods appear in -reverse- order compared to the original order of the header. Seems like a (super annoying) bug? Example:

class Foo {
public:
    int Bar() { return 6; }
    int Zot() { return 7; }
};
Becomes (header):

class Foo {
public:
    int Bar();
    int Zot();
};


Implementation:

int Foo::Zot()
{
    return 7;
}

int Foo::Bar()
{
    return 6;
}

My posts do not reflect the position of my employer, Microsoft.

feline
Whole Tomato Software

United Kingdom
18746 Posts

Posted - Jul 08 2013 :  12:24:19 PM  Show Profile  Reply with Quote
I am seeing the same effect here. Thank you for the clear description. I have put in a request for the moved functions to be in the same order.

case=75315

For now, VA Outline is designed to help you quickly and easily re-order methods in a file:

http://www.wholetomato.com/products/features/vaoutline.asp

zen is the art of being at one with the two'ness
Go to Top of Page

sean
Whole Tomato Software

USA
2817 Posts

Posted - Feb 13 2015 :  8:15:37 PM  Show Profile  Reply with Quote
case=75315 is fixed in build 2059
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
© 2023 Whole Tomato Software, LLC Go To Top Of Page
Snitz Forums 2000