summaryrefslogtreecommitdiffstats
path: root/views/controls/button
diff options
context:
space:
mode:
Diffstat (limited to 'views/controls/button')
-rw-r--r--views/controls/button/native_button_gtk.cc3
-rw-r--r--views/controls/button/native_button_win.cc3
2 files changed, 2 insertions, 4 deletions
diff --git a/views/controls/button/native_button_gtk.cc b/views/controls/button/native_button_gtk.cc
index d1fb0ef4..ce7ab64 100644
--- a/views/controls/button/native_button_gtk.cc
+++ b/views/controls/button/native_button_gtk.cc
@@ -17,8 +17,7 @@
namespace views {
NativeButtonGtk::NativeButtonGtk(NativeButton* native_button)
- : NativeControlGtk(),
- native_button_(native_button) {
+ : native_button_(native_button) {
// Associates the actual GtkWidget with the native_button so the native_button
// is the one considered as having the focus (not the wrapper) when the
// GtkWidget is focused directly (with a click for example).
diff --git a/views/controls/button/native_button_win.cc b/views/controls/button/native_button_win.cc
index 00ec3cc..3425aee 100644
--- a/views/controls/button/native_button_win.cc
+++ b/views/controls/button/native_button_win.cc
@@ -18,8 +18,7 @@ namespace views {
// NativeButtonWin, public:
NativeButtonWin::NativeButtonWin(NativeButton* native_button)
- : NativeControlWin(),
- native_button_(native_button) {
+ : native_button_(native_button) {
// Associates the actual HWND with the native_button so the native_button is
// the one considered as having the focus (not the wrapper) when the HWND is
// focused directly (with a click for example).