]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/textctrl.h
implemented SetFocus
[wxWidgets.git] / include / wx / textctrl.h
index 86079e2ded318fabec0af72fdb6ddba823fb3ba2..ecdbef164f4e0f3450f44c7c9892abe369a1d34e 100644 (file)
@@ -73,7 +73,6 @@ const wxTextCoord wxInvalidTextCoord    = -2;
 // wxTextCtrl style flags
 // ----------------------------------------------------------------------------
 
-#define wxTE_FILENAME       0x0001
 #define wxTE_NO_VSCROLL     0x0002
 #define wxTE_AUTO_SCROLL    0x0008
 
@@ -287,7 +286,7 @@ public:
     // --------
 
     wxTextCtrlBase(){}
-    ~wxTextCtrlBase(){}
+    virtual ~wxTextCtrlBase(){}
 
     // accessors
     // ---------
@@ -323,7 +322,9 @@ public:
 
     // load/save the controls contents from/to the file
     virtual bool LoadFile(const wxString& file);
+    virtual bool LoadFile(const wxString& file, int WXUNUSED(fileType)) { return LoadFile(file); }
     virtual bool SaveFile(const wxString& file = wxEmptyString);
+    virtual bool SaveFile(const wxString& file, int WXUNUSED(fileType)) { return SaveFile(file); }
 
     // sets/clears the dirty flag
     virtual void MarkDirty() = 0;