summaryrefslogtreecommitdiff
path: root/FL/Fl_Tooltip.H
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-08-03 02:28:32 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-08-03 02:28:32 +0000
commit0771e7cc7d5f6008260058511bfc2d273282d926 (patch)
tree0e47ee7c63ba885df5e76c81356034bbdba8186c /FL/Fl_Tooltip.H
parent85533d11be0b32799d1baf343a13a633cb041ea2 (diff)
Update WIN32 projects and config file.
Fix sign of Fl::e_dy to match screen coordinate directions under WIN32. Note: tooltips not working under WIN32... git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1546 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Tooltip.H')
-rw-r--r--FL/Fl_Tooltip.H8
1 files changed, 4 insertions, 4 deletions
diff --git a/FL/Fl_Tooltip.H b/FL/Fl_Tooltip.H
index 62875dc38..19dba0cf7 100644
--- a/FL/Fl_Tooltip.H
+++ b/FL/Fl_Tooltip.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Tooltip.H,v 1.16.2.2 2001/08/02 15:31:59 easysw Exp $"
+// "$Id: Fl_Tooltip.H,v 1.16.2.3 2001/08/03 02:28:32 easysw Exp $"
//
// Tooltip header file for the Fast Light Tool Kit (FLTK).
//
@@ -33,7 +33,7 @@
class Fl_TooltipBox;
class Fl_Menu_Window;
-FL_EXPORT class Fl_Tooltip {
+class FL_EXPORT Fl_Tooltip {
friend class Fl_TooltipBox;
friend class Fl_Widget;
@@ -57,7 +57,7 @@ public:
// These functions are user-called functions
static float delay() { return delay_; }
- static void delay(float f) { delay_ = (f < 0.1) ? 0.1 : f; }
+ static void delay(float f) { delay_ = (f < 0.1f) ? 0.1f : f; }
static int font() { return font_; }
static int size() { return size_; }
static void font(int i) { font_ = i; }
@@ -76,5 +76,5 @@ public:
#endif
//
-// End of "$Id: Fl_Tooltip.H,v 1.16.2.2 2001/08/02 15:31:59 easysw Exp $".
+// End of "$Id: Fl_Tooltip.H,v 1.16.2.3 2001/08/03 02:28:32 easysw Exp $".
//