From b152d8c56c72577b64de63f4d3b001db5d65f85f Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 2 Oct 2007 11:32:25 +0000 Subject: [PATCH] PCH-less compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49016 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/univ/combobox.h | 6 +----- src/univ/combobox.cpp | 5 +++++ 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/include/wx/univ/combobox.h b/include/wx/univ/combobox.h index a2d9292430..78bdc7059a 100644 --- a/include/wx/univ/combobox.h +++ b/include/wx/univ/combobox.h @@ -147,11 +147,7 @@ public: // we delegate our client data handling to wxListBox which we use for the // items, so override this and other methods dealing with the client data - virtual wxClientDataType GetClientDataType() const - { - return GetLBox()->GetClientDataType(); - } - + virtual wxClientDataType GetClientDataType() const; virtual void SetClientDataType(wxClientDataType clientDataItemsType); protected: diff --git a/src/univ/combobox.cpp b/src/univ/combobox.cpp index 21adf5f74d..2656c76d15 100644 --- a/src/univ/combobox.cpp +++ b/src/univ/combobox.cpp @@ -427,6 +427,11 @@ wxString wxComboBox::GetStringSelection() const return GetLBox()->GetStringSelection(); } +wxClientDataType wxComboBox::GetClientDataType() const +{ + return GetLBox()->GetClientDataType(); +} + void wxComboBox::SetClientDataType(wxClientDataType clientDataItemsType) { GetLBox()->SetClientDataType(clientDataItemsType); -- 2.50.0