aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNeil Hodgson <unknown>2015-01-22 13:37:27 +1100
committerNeil Hodgson <unknown>2015-01-22 13:37:27 +1100
commit452e9d164020389cc521a078273130c5fe36ad59 (patch)
tree51aee687ba0021f64bac35548655d33e567ebb1c
parent84ae8545802555aba7c9e65eec39788f5653ffee (diff)
downloadscintilla-mirror-452e9d164020389cc521a078273130c5fe36ad59.tar.gz
Specify methods that do not use this as static.
-rw-r--r--gtk/ScintillaGTK.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx
index b47a3b709..ca08166a3 100644
--- a/gtk/ScintillaGTK.cxx
+++ b/gtk/ScintillaGTK.cxx
@@ -305,8 +305,8 @@ private:
static void PreeditChanged(GtkIMContext *context, ScintillaGTK *sciThis);
void MoveImeCarets(int pos);
void DrawImeIndicator(int indicator, int len);
- void GetImeUnderlines(PangoAttrList *attrs, bool *normalInput);
- void GetImeBackgrounds(PangoAttrList *attrs, bool *targetInput);
+ static void GetImeUnderlines(PangoAttrList *attrs, bool *normalInput);
+ static void GetImeBackgrounds(PangoAttrList *attrs, bool *targetInput);
void SetCandidateWindowPos();
static void StyleSetText(GtkWidget *widget, GtkStyle *previous, void*);