From: Jouk Jansen Date: Tue, 28 Apr 2009 11:13:11 +0000 (+0000) Subject: Do not use Tooltips if they are disabled X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c437b3f4e47b74715a2f2385d4862972babd7802 Do not use Tooltips if they are disabled git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60426 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/statusbr.h b/include/wx/statusbr.h index e0efd1cff4..0b286fc7f7 100644 --- a/include/wx/statusbr.h +++ b/include/wx/statusbr.h @@ -186,13 +186,15 @@ protected: // wxWindow overrides: - virtual void DoSetToolTip( wxToolTip *tip ) +#if wxUSE_TOOLTIPS + virtual void DoSetToolTip( wxToolTip *tip ) { wxASSERT_MSG(!HasFlag(wxSTB_SHOW_TIPS), "Do not set tooltip(s) manually when using wxSTB_SHOW_TIPS!"); wxWindow::DoSetToolTip(tip); } - +#endif + virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }