diff options
author | nyamatongwe <devnull@localhost> | 2000-11-12 06:24:41 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-11-12 06:24:41 +0000 |
commit | 51dda77e8ef97324fd8f740fc2224e5a322d74d8 (patch) | |
tree | e93f40ea4ee0fef6e2be96f1cc25dec892fe18b0 | |
parent | 97ef5504b8e9b8cf858e48c0e77babf1bfd5f080 (diff) | |
download | scintilla-mirror-51dda77e8ef97324fd8f740fc2224e5a322d74d8.tar.gz |
Reformatted.
-rw-r--r-- | gtk/ScintillaGTK.cxx | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index d276bb8a6..192d916f0 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -173,32 +173,27 @@ enum { #define SCINT_WIDGET(x) ((ScintillaGTK *) ((ScintillaObject *)x)->pscin) -static gint scint_key_press(GtkWidget *widget, GdkEventKey *event) -{ +static gint scint_key_press(GtkWidget *widget, GdkEventKey *event) { ScintillaGTK *scint = SCINT_WIDGET(widget); return scint->KeyPress(widget, event, scint); } -static gint scint_key_release(GtkWidget *widget, GdkEventKey *event) -{ +static gint scint_key_release(GtkWidget *widget, GdkEventKey *event) { ScintillaGTK *scint = SCINT_WIDGET(widget); return scint->KeyRelease(widget, event, scint); } -static gint scint_focus_in(GtkWidget *widget, GdkEventFocus *event) -{ +static gint scint_focus_in(GtkWidget *widget, GdkEventFocus *event) { ScintillaGTK *scint = SCINT_WIDGET(widget); return scint->FocusIn(widget, event, scint); } -static gint scint_focus_out(GtkWidget *widget, GdkEventFocus *event) -{ +static gint scint_focus_out(GtkWidget *widget, GdkEventFocus *event) { ScintillaGTK *scint = SCINT_WIDGET(widget); return scint->FocusOut(widget, event, scint); } #endif // DEFAULT_SIG_HANDLERS - ScintillaGTK::ScintillaGTK(_ScintillaObject *sci_) : adjustmentv(0), adjustmenth(0), pasteBuffer(0), pasteBufferIsRectangular(false), |