From 4fd7ece329c633b27cc8b195ff692516217f2570 Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Sat, 23 Apr 2016 06:48:14 +0000 Subject: [PATCH] Remove Doxygen warning. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11683 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_get_key.cxx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Fl_get_key.cxx b/src/Fl_get_key.cxx index 3d8acf79f..e7b753d64 100644 --- a/src/Fl_get_key.cxx +++ b/src/Fl_get_key.cxx @@ -16,6 +16,9 @@ // http://www.fltk.org/str.php // +#include "config_lib.h" +#if defined(FL_CFG_SYS_POSIX) && !defined(FL_DOXYGEN) + // Return the current state of a key. This is the X version. I identify // keys (mostly) by the X keysym. So this turns the keysym into a keycode // and looks it up in the X key bit vector, which Fl_x.cxx keeps track of. @@ -48,6 +51,8 @@ int Fl_X11_System_Driver::get_key(int k) { return event_key(k); } +#endif // FL_CFG_SYS_POSIX + // // End of "$Id$". //