compilation fix for wxUniv: don't use the native wxTextEntry class in this case

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49121 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-10-10 15:45:28 +00:00
parent ebdbecff4a
commit 2978a784f5

View File

@@ -178,7 +178,13 @@ private:
unsigned m_eventsBlock; unsigned m_eventsBlock;
}; };
#ifdef __WXGTK20__ #ifdef __WXUNIVERSAL__
// TODO: we need to use wxTextEntryDelegate here, but for now just prevent
// the GTK/MSW classes from being used in wxUniv build
class WXDLLIMPEXP_CORE wxTextEntry : public wxTextEntryBase
{
};
#elif defined(__WXGTK20__)
#include "wx/gtk/textentry.h" #include "wx/gtk/textentry.h"
#elif defined(__WXMSW__) #elif defined(__WXMSW__)
#include "wx/msw/textentry.h" #include "wx/msw/textentry.h"