summaryrefslogtreecommitdiff
path: root/src/Fl.cxx
diff options
context:
space:
mode:
authorBill Spitzak <spitzak@gmail.com>2000-05-10 16:43:36 +0000
committerBill Spitzak <spitzak@gmail.com>2000-05-10 16:43:36 +0000
commiteb633643118c41afbfc88654045b1edde5cb9658 (patch)
treeb7f4382201be1b35ef0342dfecee630d98747981 /src/Fl.cxx
parent209917376186795106740a8698345b81b4fd976f (diff)
XForms-compatable shortcut strings modified so that "0xabcd" can specify
an arbitrary key by hex code. Lame but needed for some DD software... git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1113 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl.cxx')
-rw-r--r--src/Fl.cxx13
1 files changed, 2 insertions, 11 deletions
diff --git a/src/Fl.cxx b/src/Fl.cxx
index cbcfbd98d..6ca0647ce 100644
--- a/src/Fl.cxx
+++ b/src/Fl.cxx
@@ -1,6 +1,6 @@
#include <stdio.h>
//
-// "$Id: Fl.cxx,v 1.24.2.18 2000/04/25 22:16:17 mike Exp $"
+// "$Id: Fl.cxx,v 1.24.2.19 2000/05/10 16:43:35 bill Exp $"
//
// Main event handling code for the Fast Light Tool Kit (FLTK).
//
@@ -696,15 +696,6 @@ void Fl_Window::flush() {
draw();
}
-int fl_old_shortcut(const char* s) {
- if (!s || !*s) return 0;
- int n = 0;
- if (*s == '#') {n |= FL_ALT; s++;}
- if (*s == '+') {n |= FL_SHIFT; s++;}
- if (*s == '^') {n |= FL_CTRL; s++;}
- return n | *s;
-}
-
//
-// End of "$Id: Fl.cxx,v 1.24.2.18 2000/04/25 22:16:17 mike Exp $".
+// End of "$Id: Fl.cxx,v 1.24.2.19 2000/05/10 16:43:35 bill Exp $".
//