aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk/ScintillaGTK.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-07-22 14:03:39 +0000
committernyamatongwe <unknown>2000-07-22 14:03:39 +0000
commit15ccb113fada55a7f17efa2d9713395bdbb677c6 (patch)
tree68fe2d7b772d79b47c7146a68e0e94a1e9ac0e98 /gtk/ScintillaGTK.cxx
parent51cb131f76eb58bf26ae426139a5352ee6f9142f (diff)
downloadscintilla-mirror-15ccb113fada55a7f17efa2d9713395bdbb677c6.tar.gz
Changed key codes to not overlap printing keys.
Mved the #ifs around DBCS support to avoid warnings on GTK+.
Diffstat (limited to 'gtk/ScintillaGTK.cxx')
-rw-r--r--gtk/ScintillaGTK.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx
index f150a9297..73dfb9581 100644
--- a/gtk/ScintillaGTK.cxx
+++ b/gtk/ScintillaGTK.cxx
@@ -864,7 +864,7 @@ static int KeyTranslate(int keyIn) {
}
gint ScintillaGTK::KeyPress(GtkWidget *, GdkEventKey *event, ScintillaGTK *sciThis) {
- //Platform::DebugPrintf("SC-key: %d %x %x\n",event->keyval, event->state, GTK_WIDGET_FLAGS(widget));
+ //Platform::DebugPrintf("SC-key: %d %x %x\n",event->keyval, event->state);
bool shift = event->state & GDK_SHIFT_MASK;
bool ctrl = event->state & GDK_CONTROL_MASK;
bool alt = event->state & GDK_MOD1_MASK;