]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/tooltip.cpp
eVC3 (older WinCE) build fix.
[wxWidgets.git] / src / msw / tooltip.cpp
index 052fbca0b9e2b53016a1c35a8aa24b76e1130c2d..17bcc3fce808980930dd1d20c83e2a37bdcd1038 100644 (file)
@@ -244,8 +244,9 @@ wxToolTip::wxToolTip(const wxString &tip)
 
 wxToolTip::~wxToolTip()
 {
-    // there is no need to Remove() this tool - it will be done automatically
-    // anyhow
+    // the tooltip has to be removed before deleting. Otherwise, if it is visible
+       // while being deleted, there will be a delay before it goes away.
+       Remove();
 }
 
 // ----------------------------------------------------------------------------