| T O P I C    R E V I E W | 
              
              
                | tailsu | 
                Posted - Oct 02 2008 : 06:20:28 AM  When renaming a virtual method in a derived class, I expect that the base classes will have its respective methods renamed as well. Otherwise I'm breaking the hierarchy of overriden methods.
  struct base {  virtual void foo() {} }
  struct derived : base {  virtual void foo() {} // 'rename' on this method doesn't suggest renaming the foo() method in the base class }
 
  | 
              
              
                | 2   L A T E S T    R E P L I E S    (Newest First) | 
              
              
                | support | 
                Posted - Jan 31 2010 : 1:15:00 PM  case=3346 is implemented in build 1810 | 
              
              
                | feline | 
                Posted - Oct 02 2008 : 07:16:24 AM  We are considering doing this:
  case=3346
  However it is also something that can be tricky at times.  For now the solution is to trigger the rename in the base class, which should suggest / offer all of the derived classes. |