diff options
Diffstat (limited to 'src/Fl_grab.cxx')
| -rw-r--r-- | src/Fl_grab.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl_grab.cxx b/src/Fl_grab.cxx index 5778607ab..38e51d368 100644 --- a/src/Fl_grab.cxx +++ b/src/Fl_grab.cxx @@ -36,7 +36,7 @@ extern void fl_fix_focus(); // in Fl.cxx // see where and how this is used. extern HWND fl_capture; -#elif defined(__APPLE__) +#elif defined(__APPLE__) // PORTME: platform focus grabbing extern void *fl_capture; #elif defined(FL_PORTING) @@ -61,7 +61,7 @@ void Fl::grab(Fl_Window* win) { #ifdef WIN32 SetActiveWindow(fl_capture = fl_xid(first_window())); SetCapture(fl_capture); -#elif defined(__APPLE__) +#elif defined(__APPLE__) // PORTME: platform focus grabbing fl_capture = Fl_X::i(first_window())->xid; Fl_X::i(first_window())->set_key_window(); #elif defined(FL_PORTING) @@ -92,7 +92,7 @@ void Fl::grab(Fl_Window* win) { #ifdef WIN32 fl_capture = 0; ReleaseCapture(); -#elif defined(__APPLE__) +#elif defined(__APPLE__) // PORTME: platform focus grabbing fl_capture = 0; #elif defined(FL_PORTING) # pragma message "FL_PORTING: implement event grabbing" |
