Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 321286

Summary: Rename refactoring should rename methods through class hierarchies
Product: [Tools] CDT Reporter: Marc-AndrĂ© Laperle <malaperle>
Component: cdt-refactoringAssignee: Project Inbox <cdt-refactoring-inbox>
Status: RESOLVED WORKSFORME QA Contact: Sergey Prigogin <eclipse.sprigogin>
Severity: normal    
Priority: P3 CC: yevshif
Version: 7.0   
Target Milestone: ---   
Hardware: All   
OS: All   
Whiteboard:

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.