]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/stc/stc.h.in
fixes to dependency problems in win32 makefiles
[wxWidgets.git] / contrib / src / stc / stc.h.in
index baeaf0d437f4b2d890740316668fe2e6ad9504f4..e1c17422a17d3bec72daf25f7bafdb58bc3c8d57 100644 (file)
@@ -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);
+
 
 //----------------------------------------------------------------------
 
@@ -457,13 +463,14 @@ inline wxString stc2wx(const char* str) {
 #endif
 }
 
-inline wxString stc2wx(const char* str, size_t len) {
 #if wxUSE_UNICODE
-    return wxString(str, wxConvUTF8, len);
+wxString stc2wx(const char* str, size_t len);
 #else
+inline wxString stc2wx(const char* str, size_t len) {
     return wxString(str, len);
-#endif
 }
+#endif
+
 
 #if wxUSE_UNICODE
 inline const wxWX2MBbuf wx2stc(const wxString& str) {