// ----------------------------------------------------------------------------
#ifdef __GNUG__
- #pragma implementation "windowbase.h"
+ #pragma implementation "tipdlg.h"
#endif
// For compilers that support precompilation, includes "wx.h".
#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"
virtual wxString GetTip();
};
+
+// Empty implementation for now to keep the linker happy
+wxString wxRegTipProvider::GetTip()
+{
+ return "";
+}
+
#endif // __WIN32__
// the dialog we show in wxShowTip()
wxIcon icon("wxICON_TIP");
#else
#include "wx/generic/tip.xpm"
- wxIcon icon(info);
+ wxIcon icon(tipIcon);
#endif
wxStaticBitmap *bmp = new wxStaticBitmap(this, -1, icon);