]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/stc/edit.cpp
Reserve the whole style byte for styles. See #14688
[wxWidgets.git] / samples / stc / edit.cpp
index 777f19078931f1429a61afabf03e7a953ed6628b..ed4c804711f78969a2d49201fe79ebb320457c37 100644 (file)
@@ -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");
 }