// wxTextCtrl style flags
// ----------------------------------------------------------------------------
-#define wxTE_FILENAME 0x0001
#define wxTE_NO_VSCROLL 0x0002
#define wxTE_AUTO_SCROLL 0x0008
// --------
wxTextCtrlBase(){}
- ~wxTextCtrlBase(){}
+ virtual ~wxTextCtrlBase(){}
// accessors
// ---------
// 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;