diff options
| author | Manolo Gouy <Manolo> | 2016-04-22 17:13:40 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2016-04-22 17:13:40 +0000 |
| commit | 5ec684f236e14c40e53f7b67b37048895c61db6b (patch) | |
| tree | 17ef3bd52170af369313caea6adf1e0dc9a3f6a1 /src/Fl_x.cxx | |
| parent | 3d41fd7c67b62456090cbc641f10b6aa9ec7c388 (diff) | |
Minor simplification.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11678 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_x.cxx')
| -rw-r--r-- | src/Fl_x.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Fl_x.cxx b/src/Fl_x.cxx index 48062b32f..92b9be5fc 100644 --- a/src/Fl_x.cxx +++ b/src/Fl_x.cxx @@ -152,7 +152,7 @@ void Fl_X11_System_Driver::add_fd(int n, int events, void (*cb)(int, void*), voi } void Fl_X11_System_Driver::add_fd(int n, void (*cb)(int, void*), void* v) { - Fl::add_fd(n, POLLIN, cb, v); + add_fd(n, POLLIN, cb, v); } void Fl_X11_System_Driver::remove_fd(int n, int events) { |
