 Chromium Code Reviews
 Chromium Code Reviews Issue 6452011:
  Rework tree APIs to reflect Google style and more const-correctness....  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src/
    
  
    Issue 6452011:
  Rework tree APIs to reflect Google style and more const-correctness....  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src/| Index: views/controls/native_control.cc | 
| =================================================================== | 
| --- views/controls/native_control.cc (revision 74231) | 
| +++ views/controls/native_control.cc (working copy) | 
| @@ -146,7 +146,7 @@ | 
| if (brush) | 
| return reinterpret_cast<LRESULT>(brush); | 
| } | 
| - ancestor = ancestor->GetParent(); | 
| + ancestor = ancestor->parent(); | 
| } | 
| // COLOR_BTNFACE is the default for dialog box backgrounds. |