From 06d7fdef4be041e161a13f9aa453925aa84c0cf5 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 30 Jun 1999 04:34:13 +0000 Subject: [PATCH] Corrected link error for missing wxRegTipProvider::GetTip by giving it 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 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/generic/tipdlg.cpp b/src/generic/tipdlg.cpp index ef44a8057c..1b04b10df8 100644 --- a/src/generic/tipdlg.cpp +++ b/src/generic/tipdlg.cpp @@ -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() -- 2.45.2