diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2007-05-20 16:18:31 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2007-05-20 16:18:31 +0000 |
| commit | d8c288df3e51f156e9900313ec33b3d4c8ae3f84 (patch) | |
| tree | 8b01921f52c6e04a28aa735a3fc05141c5de4c09 /src/Fl_Tooltip.cxx | |
| parent | 56a50b9f0e7d47cfda34afe7e19dd51c08e3d9ba (diff) | |
Fix compiler warnings/errors.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5848 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Tooltip.cxx')
| -rw-r--r-- | src/Fl_Tooltip.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Fl_Tooltip.cxx b/src/Fl_Tooltip.cxx index 0eb407158..bf100bd9c 100644 --- a/src/Fl_Tooltip.cxx +++ b/src/Fl_Tooltip.cxx @@ -206,6 +206,9 @@ Fl_Tooltip::exit_(Fl_Widget *w) { void Fl_Tooltip::enter_area(Fl_Widget* wid, int x,int y,int w,int h, const char* t) { + (void)x; + (void)w; + #ifdef DEBUG printf("Fl_Tooltip::enter_area(wid=%p, x=%d, y=%d, w=%d, h=%d, t=\"%s\")\n", wid, x, y, w, h, t ? t : "(null)"); |
