diff options
Diffstat (limited to 'views/debug_utils.cc')
-rw-r--r-- | views/debug_utils.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/debug_utils.cc b/views/debug_utils.cc index 1a6cda2..b490736 100644 --- a/views/debug_utils.cc +++ b/views/debug_utils.cc @@ -24,7 +24,7 @@ void PrintViewHierarchyImp(const View* view, int indent) { buf << L' '; buf << UTF8ToWide(view->GetClassName()); buf << L' '; - buf << view->GetID(); + buf << view->id(); buf << L' '; buf << view->x() << L"," << view->y() << L","; buf << view->bounds().right() << L"," << view->bounds().bottom(); @@ -45,7 +45,7 @@ void PrintFocusHierarchyImp(const View* view, int indent) { buf << L' '; buf << UTF8ToWide(view->GetClassName()); buf << L' '; - buf << view->GetID(); + buf << view->id(); buf << L' '; buf << view->GetClassName().c_str(); buf << L' '; |