aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-11-12 06:24:41 +0000
committernyamatongwe <devnull@localhost>2000-11-12 06:24:41 +0000
commit51dda77e8ef97324fd8f740fc2224e5a322d74d8 (patch)
treee93f40ea4ee0fef6e2be96f1cc25dec892fe18b0
parent97ef5504b8e9b8cf858e48c0e77babf1bfd5f080 (diff)
downloadscintilla-mirror-51dda77e8ef97324fd8f740fc2224e5a322d74d8.tar.gz
Reformatted.
-rw-r--r--gtk/ScintillaGTK.cxx13
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),