Whole Tomato Software Forums
Whole Tomato Software Forums
Main Site | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Visual Assist
 Technical Support
 case=68550: not properly solved

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
azur Posted - Sep 13 2012 : 02:58:02 AM
It seems to me that your parsing is wrong.

Example 1:
class CDataTestReparsing : CObject
{
public:
   CDataTestReparsing();
   ~CDataTestReparsing();
protected:
   void testMember2();
   void testMember1();
};


Result:
CDataTestReparsing::CDataTestReparsing()
{

}  // public

CDataTestReparsing::~CDataTestReparsing()
{

}  // ~CDataTestReparsing

void CDataTestReparsing::testMember2()
{

}  // protected

void CDataTestReparsing::testMember1()
{

}  // testMember1


Example 2:
class CDataTestReparsing : CObject
{
public:
CDataTestReparsing();
~CDataTestReparsing();
protected:
void testMember2();
void testMember1();
};

Result:
CDataTestReparsing::CDataTestReparsing()
{

}  // CDataTestReparsing

CDataTestReparsing::~CDataTestReparsing()
{

}  // ~CDataTestReparsing

void CDataTestReparsing::testMember2()
{

}  // void

void CDataTestReparsing::testMember1()
{

}  // void


----------------------

If you use "Refactor->Create Implementation" on a single method then the created method is selected so you can cut+paste to a different location. That's fine.

After finishing the bulk "Refactor->Create Implementation" you are back from where you started. If you switch to the implementation file only the last created method is selected. That's not what I expected.

2   L A T E S T    R E P L I E S    (Newest First)
support Posted - Oct 29 2012 : 11:08:33 AM
case=68550 is fixed in build 1918
accord Posted - Sep 13 2012 : 08:24:01 AM
I am seeing the same effect here. Thank you for the clear description. I have reopened the case:

case=68550

I have put in an enhancement request to select all created methods, not just the last one:

case=69256

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