typo fix (strangely VC9 doesn't consider it an error)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60390 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi 2009-04-26 14:38:55 +00:00
parent c173e541b8
commit 8f99e9c314

View File

@ -187,10 +187,10 @@ protected:
// wxWindow overrides:
virtual void DoSetToolTip( wxToolTip *tip )
{
{
wxASSERT_MSG(!HasFlag(wxSTB_SHOW_TIPS),
"Do not set tooltip(s) manually when using wxSTB_SHOW_TIPS!");
return wxWindow::DoSetToolTip(tip);
wxWindow::DoSetToolTip(tip);
}
virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }