From d760f23e7634a953bb6e1ced0de69f7016c12884 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 31 May 2002 14:14:00 +0000 Subject: [PATCH] replaced wxWindowGTK::m_isListBox with a virtual function git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15717 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/gtk/window.h | 1 - include/wx/gtk1/window.h | 1 - src/gtk/listbox.cpp | 1 - src/gtk1/listbox.cpp | 1 - 4 files changed, 4 deletions(-) diff --git a/include/wx/gtk/window.h b/include/wx/gtk/window.h index dbc427553f..f9116d3d20 100644 --- a/include/wx/gtk/window.h +++ b/include/wx/gtk/window.h @@ -215,7 +215,6 @@ public: bool m_sizeSet:1; bool m_resizing:1; bool m_isRadioButton:1; // faster than IS_KIND_OF - bool m_isListBox:1; // faster than IS_KIND_OF bool m_isFrame:1; // faster than IS_KIND_OF bool m_acceptsFocus:1; // true if not static bool m_hasFocus:1; // true if == FindFocus() diff --git a/include/wx/gtk1/window.h b/include/wx/gtk1/window.h index dbc427553f..f9116d3d20 100644 --- a/include/wx/gtk1/window.h +++ b/include/wx/gtk1/window.h @@ -215,7 +215,6 @@ public: bool m_sizeSet:1; bool m_resizing:1; bool m_isRadioButton:1; // faster than IS_KIND_OF - bool m_isListBox:1; // faster than IS_KIND_OF bool m_isFrame:1; // faster than IS_KIND_OF bool m_acceptsFocus:1; // true if not static bool m_hasFocus:1; // true if == FindFocus() diff --git a/src/gtk/listbox.cpp b/src/gtk/listbox.cpp index 2f909c4a88..c63ba920e3 100644 --- a/src/gtk/listbox.cpp +++ b/src/gtk/listbox.cpp @@ -335,7 +335,6 @@ bool wxListBox::Create( wxWindow *parent, wxWindowID id, { m_needParent = TRUE; m_acceptsFocus = TRUE; - m_isListBox = TRUE; m_prevSelection = 0; // or -1 ?? m_blockEvent = FALSE; diff --git a/src/gtk1/listbox.cpp b/src/gtk1/listbox.cpp index 2f909c4a88..c63ba920e3 100644 --- a/src/gtk1/listbox.cpp +++ b/src/gtk1/listbox.cpp @@ -335,7 +335,6 @@ bool wxListBox::Create( wxWindow *parent, wxWindowID id, { m_needParent = TRUE; m_acceptsFocus = TRUE; - m_isListBox = TRUE; m_prevSelection = 0; // or -1 ?? m_blockEvent = FALSE; -- 2.45.2