Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 321286 - Rename refactoring should rename methods through class hierarchies
Summary: Rename refactoring should rename methods through class hierarchies
Status: RESOLVED WORKSFORME
Alias: None
Product: CDT
Classification: Tools
Component: cdt-refactoring (show other bugs)
Version: 7.0   Edit
Hardware: All All
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact: Sergey Prigogin CLA
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-07-30 00:15 EDT by Marc-André Laperle CLA
Modified: 2012-04-23 18:53 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Marc-André Laperle CLA 2010-07-30 00:15:02 EDT
Example:

class A
{
   virtual void foo();
};

class B : public A
{
   virtual void foo();
};

Renaming B::foo() should also rename A::foo() and vice-versa.
Comment 1 Sergey Prigogin CLA 2012-04-23 18:53:21 EDT
Works for me in master. Please reopen if you can still reproduce it.