]> git.saurik.com Git - wxWidgets.git/commitdiff
Corrected link error for missing wxRegTipProvider::GetTip by giving it
authorRobin Dunn <robin@alldunn.com>
Wed, 30 Jun 1999 04:34:13 +0000 (04:34 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 30 Jun 1999 04:34:13 +0000 (04:34 +0000)
an empty stub function that can be filled in later when somebody
finishes this class.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2936 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/tipdlg.cpp

index ef44a8057cf19a0ce44eee7b162756cca7836a5a..1b04b10df8bf9278a128273a6a0ff2d16d43fd7c 100644 (file)
@@ -79,6 +79,13 @@ public:
 
     virtual wxString GetTip();
 };
+
+// Empty implementation for now to keep the linker happy
+wxString wxRegTipProvider::GetTip()
+{
+    return "";
+}
+
 #endif // __WIN32__
 
 // the dialog we show in wxShowTip()