diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/IO/iowatch.hh | 2 | ||||
-rw-r--r-- | src/dialog.cc | 1 | ||||
-rw-r--r-- | src/keys.cc | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/src/IO/iowatch.hh b/src/IO/iowatch.hh index 681d0080..e2d497f1 100644 --- a/src/IO/iowatch.hh +++ b/src/IO/iowatch.hh @@ -2,7 +2,7 @@ #define __IO_WATCH_H__ /* - * BUG: enum {READ = 1, WRITE = 4, EXCEPT = 8} borrowed from fltk/run.h + * BUG: enum {READ = 1, WRITE = 4, EXCEPT = 8} borrowed from FL/Enumerations.H */ #define DIO_READ 1 #define DIO_WRITE 4 diff --git a/src/dialog.cc b/src/dialog.cc index 3f4f5933..594ec8f1 100644 --- a/src/dialog.cc +++ b/src/dialog.cc @@ -78,7 +78,6 @@ const char *a_Dialog_select_file(const char *msg, return a_Dialog_save_file(msg, pattern, fname); } -//#include <fltk/FileIcon.h> /* * Show the open file dialog. * diff --git a/src/keys.cc b/src/keys.cc index 462b7c1a..7f499153 100644 --- a/src/keys.cc +++ b/src/keys.cc @@ -338,7 +338,7 @@ void Keys::parseKey(char *key, char *commandName) const char *beyond = keystr + strlen(keystr); keycode = a_Utf8_decode(keystr, beyond, NULL); } else if (key[0] == '0' && key[1] == 'x') { - /* keysym. For details on values reported, see fltk's fltk/events.h */ + /* keysym */ keycode = strtol(key, NULL, 0x10); } else if ((st = getKeyCode(keystr)) == -1) { MSG("Keys::parseKey unknown keyname: %s\n", keystr); |