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
This commit is contained in:
@@ -215,7 +215,6 @@ public:
|
|||||||
bool m_sizeSet:1;
|
bool m_sizeSet:1;
|
||||||
bool m_resizing:1;
|
bool m_resizing:1;
|
||||||
bool m_isRadioButton:1; // faster than IS_KIND_OF
|
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_isFrame:1; // faster than IS_KIND_OF
|
||||||
bool m_acceptsFocus:1; // true if not static
|
bool m_acceptsFocus:1; // true if not static
|
||||||
bool m_hasFocus:1; // true if == FindFocus()
|
bool m_hasFocus:1; // true if == FindFocus()
|
||||||
|
@@ -215,7 +215,6 @@ public:
|
|||||||
bool m_sizeSet:1;
|
bool m_sizeSet:1;
|
||||||
bool m_resizing:1;
|
bool m_resizing:1;
|
||||||
bool m_isRadioButton:1; // faster than IS_KIND_OF
|
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_isFrame:1; // faster than IS_KIND_OF
|
||||||
bool m_acceptsFocus:1; // true if not static
|
bool m_acceptsFocus:1; // true if not static
|
||||||
bool m_hasFocus:1; // true if == FindFocus()
|
bool m_hasFocus:1; // true if == FindFocus()
|
||||||
|
@@ -335,7 +335,6 @@ bool wxListBox::Create( wxWindow *parent, wxWindowID id,
|
|||||||
{
|
{
|
||||||
m_needParent = TRUE;
|
m_needParent = TRUE;
|
||||||
m_acceptsFocus = TRUE;
|
m_acceptsFocus = TRUE;
|
||||||
m_isListBox = TRUE;
|
|
||||||
m_prevSelection = 0; // or -1 ??
|
m_prevSelection = 0; // or -1 ??
|
||||||
m_blockEvent = FALSE;
|
m_blockEvent = FALSE;
|
||||||
|
|
||||||
|
@@ -335,7 +335,6 @@ bool wxListBox::Create( wxWindow *parent, wxWindowID id,
|
|||||||
{
|
{
|
||||||
m_needParent = TRUE;
|
m_needParent = TRUE;
|
||||||
m_acceptsFocus = TRUE;
|
m_acceptsFocus = TRUE;
|
||||||
m_isListBox = TRUE;
|
|
||||||
m_prevSelection = 0; // or -1 ??
|
m_prevSelection = 0; // or -1 ??
|
||||||
m_blockEvent = FALSE;
|
m_blockEvent = FALSE;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user