X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9e96e16fe0bc7af32d329c965ad110a3e5be5ad8..e0dec8753abaf97e006ea1185bfb6775b28df0a8:/samples/stc/edit.cpp diff --git a/samples/stc/edit.cpp b/samples/stc/edit.cpp index 777f190789..17e3737927 100644 --- a/samples/stc/edit.cpp +++ b/samples/stc/edit.cpp @@ -120,6 +120,9 @@ Edit::Edit (wxWindow *parent, wxWindowID id, // initialize language m_language = NULL; + // Use all the bits in the style byte as styles, not indicators. + SetStyleBits(8); + // default font for all styles SetViewEOL (g_CommonPrefs.displayEOLEnable); SetIndentationGuides (g_CommonPrefs.indentGuideEnable); @@ -190,7 +193,7 @@ void Edit::OnEditClear (wxCommandEvent &WXUNUSED(event)) { Clear (); } -void Edit::OnKey (wxStyledTextEvent &event) +void Edit::OnKey (wxStyledTextEvent &WXUNUSED(event)) { wxMessageBox("OnKey"); } @@ -530,18 +533,6 @@ bool Edit::LoadFile (const wxString &filename) { // load file in edit and clear undo if (!filename.empty()) m_filename = filename; -// wxFile file (m_filename); -// if (!file.IsOpened()) return false; - ClearAll (); -// long lng = file.Length (); -// if (lng > 0) { -// wxString buf; -// wxChar *buff = buf.GetWriteBuf (lng); -// file.Read (buff, lng); -// buf.UngetWriteBuf (); -// InsertText (0, buf); -// } -// file.Close(); wxStyledTextCtrl::LoadFile(m_filename);