Whole Tomato Software Forums
Whole Tomato Software Forums
Main Site | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Visual Assist
 Technical Support
 Refactor - Move implementations to source ordering

You must be registered to post a reply.
Click here to register.

Screensize:
UserName:
Password:
Format: BoldItalicizeUnderlineStrikethrough Align leftCenterAlign right Insert horizontal ruleUpload and insert imageInsert hyperlinkInsert email addressInsert codeInsert quoted textInsert listInsert Emoji
   
Message:

Forum code is on.
Html is off.

 
Check to subscribe to this topic.
   

T O P I C    R E V I E W
jdwiswall Posted - Jul 08 2013 : 02:35:22 AM
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;
}
2   L A T E S T    R E P L I E S    (Newest First)
sean Posted - Feb 13 2015 : 8:15:37 PM
case=75315 is fixed in build 2059
feline Posted - Jul 08 2013 : 12:24:19 PM
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

© 2023 Whole Tomato Software, LLC Go To Top Of Page
Snitz Forums 2000