]> git.saurik.com Git - wxWidgets.git/commitdiff
Added dummy-wxTextEntry implementation section for wxUniversal
authorJaakko Salli <jaakko.salli@dnainternet.net>
Mon, 20 Dec 2010 11:23:14 +0000 (11:23 +0000)
committerJaakko Salli <jaakko.salli@dnainternet.net>
Mon, 20 Dec 2010 11:23:14 +0000 (11:23 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66406 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/generic/combo.h

index 108c8cfeb51457115ccde330d108ade6655b4110..b9a6b21c91afddeb0dcd4bfda9ba0a5d0ae63131 100644 (file)
@@ -81,7 +81,9 @@ public:
 protected:
 
     // Dummies for platform-specific wxTextEntry implementations
-#if defined(__WXGTK__)
+#if defined(__WXUNIVERSAL__)
+    // Looks like there's nothing we need to override here
+#elif defined(__WXGTK__)
     virtual GtkEditable *GetEditable() const { return NULL; }
     virtual GtkEntry *GetEntry() const { return NULL; }
 #elif defined(__WXMAC__)