]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/srchctlg.cpp
fixing non precomp include
[wxWidgets.git] / src / generic / srchctlg.cpp
index 3fe46f2ea1489468b64bae9ba78280427e45a3f7..49b469f03310bc7e7d9262a887b928ce4e4f0265 100644 (file)
@@ -137,9 +137,20 @@ public:
 
     // provide access to the base class protected methods to wxSearchCtrl which
     // needs to forward to them
-    using wxTextCtrl::DoSetValue;
-    using wxTextCtrl::DoLoadFile;
-    using wxTextCtrl::DoSaveFile;
+    void DoSetValue(const wxString& value, int flags)
+    {
+        wxTextCtrl::DoSetValue(value, flags);
+    }
+
+    bool DoLoadFile(const wxString& file, int fileType)
+    {
+        return wxTextCtrl::DoLoadFile(file, fileType);
+    }
+
+    bool DoSaveFile(const wxString& file, int fileType)
+    {
+        return wxTextCtrl::DoSaveFile(file, fileType);
+    }
 
 protected:
     void OnText(wxCommandEvent& eventText)