]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/valtext.h
another compilation fix for over-optimized #includes
[wxWidgets.git] / include / wx / valtext.h
index 0d986f0270de6f712850f03e202638001710811d..418c5d01bb96eb764db60688125d41f4b1dffce1 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_VALTEXTH__
 #define _WX_VALTEXTH__
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
 #pragma interface "valtext.h"
 #endif
 
@@ -20,6 +20,7 @@
 
 #if wxUSE_VALIDATORS
 
+#include "wx/textctrl.h"
 #include "wx/validate.h"
 
 #define wxFILTER_NONE           0x0000
@@ -94,6 +95,14 @@ protected:
 
         return TRUE;
     }
+
+private:
+// Cannot use
+//  DECLARE_NO_COPY_CLASS(wxTextValidator)
+// because copy constructor is explicitly declared above;
+// but no copy assignment operator is defined, so declare
+// it private to prevent the compiler from defining it:
+    wxTextValidator& operator=(const wxTextValidator&);
 };
 
 #endif