]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/wincmn.cpp
Delete the filesystem used by wxWebViewArchiveHandler when we are done with it. Fixes...
[wxWidgets.git] / src / common / wincmn.cpp
index 2d34340f70edffad972f9c6215a4b70cc4c00a79..a8fee417924f5a6b81930cdd26d7dd4dd1b87cdb 100644 (file)
@@ -2121,6 +2121,13 @@ void wxWindowBase::DoSetToolTip(wxToolTip *tooltip)
     }
 }
 
+bool wxWindowBase::CopyToolTip(wxToolTip *tip)
+{
+    SetToolTip(tip ? new wxToolTip(tip->GetTip()) : NULL);
+
+    return tip != NULL;
+}
+
 #endif // wxUSE_TOOLTIPS
 
 // ----------------------------------------------------------------------------