diff options
Diffstat (limited to 'views')
-rw-r--r-- | views/controls/menu/menu_2.cc | 3 | ||||
-rw-r--r-- | views/controls/menu/menu_2.h | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/views/controls/menu/menu_2.cc b/views/controls/menu/menu_2.cc index 388b4e9..f64f275 100644 --- a/views/controls/menu/menu_2.cc +++ b/views/controls/menu/menu_2.cc @@ -16,9 +16,6 @@ Menu2::Menu2(ui::MenuModel* model) Rebuild(); } -Menu2::~Menu2() { -} - gfx::NativeMenu Menu2::GetNativeMenu() const { return wrapper_->GetNativeMenu(); } diff --git a/views/controls/menu/menu_2.h b/views/controls/menu/menu_2.h index 7204120..8916b7c 100644 --- a/views/controls/menu/menu_2.h +++ b/views/controls/menu/menu_2.h @@ -33,7 +33,7 @@ class Menu2 { // MyClass : menu_(this) {} // is likely to have problems. explicit Menu2(ui::MenuModel* model); - virtual ~Menu2(); + virtual ~Menu2() {} // How the menu is aligned relative to the point it is shown at. // The alignment is reversed by menu if text direction is right to left. |