]> git.saurik.com Git - wxWidgets.git/commitdiff
replaced wxWindowGTK::m_isListBox with a virtual function
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 31 May 2002 14:14:00 +0000 (14:14 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 31 May 2002 14:14:00 +0000 (14:14 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15717 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/gtk/window.h
include/wx/gtk1/window.h
src/gtk/listbox.cpp
src/gtk1/listbox.cpp

index dbc427553f47cf702da35d168c3c8714b714a777..f9116d3d20268f49b575c947035c71ae2334e73c 100644 (file)
@@ -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()
index dbc427553f47cf702da35d168c3c8714b714a777..f9116d3d20268f49b575c947035c71ae2334e73c 100644 (file)
@@ -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()
index 2f909c4a88fa911e34e15495c8315dc416a852c3..c63ba920e37de4a63809b862a359ab1bd997e02a 100644 (file)
@@ -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;
 
index 2f909c4a88fa911e34e15495c8315dc416a852c3..c63ba920e37de4a63809b862a359ab1bd997e02a 100644 (file)
@@ -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;