X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c50f1fb9226d9260454ccb9c8a67d0be23c2827f..b62c3631c9d769f3cd8e85c0f1298d9f09a919d2:/src/generic/tipdlg.cpp?ds=sidebyside diff --git a/src/generic/tipdlg.cpp b/src/generic/tipdlg.cpp index 8ea6f3cf6b..3ae7cd8462 100644 --- a/src/generic/tipdlg.cpp +++ b/src/generic/tipdlg.cpp @@ -18,7 +18,7 @@ // ---------------------------------------------------------------------------- #ifdef __GNUG__ - #pragma implementation "windowbase.h" + #pragma implementation "tipdlg.h" #endif // For compilers that support precompilation, includes "wx.h". @@ -34,8 +34,13 @@ #include "wx/button.h" #include "wx/checkbox.h" #include "wx/statbox.h" - #include "wx/statbmp.h" #include "wx/dialog.h" + #include "wx/icon.h" + #include "wx/intl.h" + #include "wx/layout.h" + #include "wx/settings.h" + #include "wx/textctrl.h" + #include "wx/statbmp.h" #endif // WX_PRECOMP #include "wx/statline.h" @@ -74,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() @@ -175,7 +187,7 @@ wxTipDialog::wxTipDialog(wxWindow *parent, wxIcon icon("wxICON_TIP"); #else #include "wx/generic/tip.xpm" - wxIcon icon(info); + wxIcon icon(tipIcon); #endif wxStaticBitmap *bmp = new wxStaticBitmap(this, -1, icon);