summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBill Spitzak <spitzak@gmail.com>2002-05-13 14:00:46 +0000
committerBill Spitzak <spitzak@gmail.com>2002-05-13 14:00:46 +0000
commit2e7f053e2b31a9effdb46eb40b0024e4ad9b1861 (patch)
tree37419529132f19fde2d65bcb63a6f1dd68249b43 /src
parent80465e4bfff4fd298fa6fb40ccb624d4abd57709 (diff)
Removed 2.0 destroy() call from WIN32 code
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2213 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/Fl_Tooltip.cxx8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/Fl_Tooltip.cxx b/src/Fl_Tooltip.cxx
index 10413d31f..11c9841f0 100644
--- a/src/Fl_Tooltip.cxx
+++ b/src/Fl_Tooltip.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Tooltip.cxx,v 1.38.2.17 2002/05/13 05:05:11 spitzak Exp $"
+// "$Id: Fl_Tooltip.cxx,v 1.38.2.18 2002/05/13 14:00:46 spitzak Exp $"
//
// Tooltip source file for the Fast Light Tool Kit (FLTK).
//
@@ -48,10 +48,6 @@ public:
}
void draw();
void layout();
-#ifdef _WIN32
- // You have to destroy the window or it will not raise next time:
- void hide() {destroy();}
-#endif
};
static const char* tip;
@@ -176,5 +172,5 @@ void Fl_Widget::tooltip(const char *tt) {
}
//
-// End of "$Id: Fl_Tooltip.cxx,v 1.38.2.17 2002/05/13 05:05:11 spitzak Exp $".
+// End of "$Id: Fl_Tooltip.cxx,v 1.38.2.18 2002/05/13 14:00:46 spitzak Exp $".
//