mirror of
https://git.code.sf.net/p/flwm/flwm
synced 2025-12-11 23:06:56 -05:00
Removed compilation warnings from modern systems
This commit is contained in:
@ -182,8 +182,8 @@ int test_shortcut(int shortcut) {
|
||||
int Handle_Hotkey() {
|
||||
for (int i = 0; keybindings[i].key; i++) {
|
||||
if (Fl::test_shortcut(keybindings[i].key) ||
|
||||
(keybindings[i].key & 0xFFFF) == FL_Delete
|
||||
&& Fl::event_key() == FL_BackSpace// fltk bug?
|
||||
((keybindings[i].key & 0xFFFF) == FL_Delete
|
||||
&& Fl::event_key() == FL_BackSpace)// fltk bug?
|
||||
) {
|
||||
keybindings[i].func();
|
||||
return 1;
|
||||
|
||||
Reference in New Issue
Block a user