aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-07-22 14:03:39 +0000
committernyamatongwe <devnull@localhost>2000-07-22 14:03:39 +0000
commit0a339b29044f7af6f6c683df801216759d18ec99 (patch)
tree68fe2d7b772d79b47c7146a68e0e94a1e9ac0e98 /gtk
parent39e1b337bd828fca3726429142e0b575ea9d99e4 (diff)
downloadscintilla-mirror-0a339b29044f7af6f6c683df801216759d18ec99.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')
-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;