X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9e730a78765d0e70ca5b77512569c94585070fe2..1e93ca17294b6da0d8cf63bffb0017cdfa0013df:/src/stc/stc.h.in diff --git a/src/stc/stc.h.in b/src/stc/stc.h.in index baeaf0d437..70addc7abb 100644 --- a/src/stc/stc.h.in +++ b/src/stc/stc.h.in @@ -193,6 +193,12 @@ public: bool GetLastKeydownProcessed() { return m_lastKeyDownConsumed; } void SetLastKeydownProcessed(bool val) { m_lastKeyDownConsumed = val; } + // Write the contents of the editor to filename + bool SaveFile(const wxString& filename); + + // Load the contents of filename into the editor + bool LoadFile(const wxString& filename); + //----------------------------------------------------------------------