Compilation fixes after r73050.

See #14862.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73051 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-11-28 15:42:18 +00:00
parent d3feb55c49
commit 34ece4ff0e
2 changed files with 2 additions and 2 deletions

View File

@@ -73,7 +73,7 @@ void wxRichToolTip::SetTitleFont(const wxFont& font)
m_impl->SetTitleFont(font);
}
void wxRichToolTip::ShowFor(wxWindow* win, wxRect* rect = NULL);
void wxRichToolTip::ShowFor(wxWindow* win, wxRect* rect)
{
wxCHECK_RET( win, wxS("Must have a valid window") );

View File

@@ -673,7 +673,7 @@ void wxRichToolTipGenericImpl::SetTitleFont(const wxFont& font)
m_titleFont = font;
}
void wxRichToolTipGenericImpl::ShowFor(wxWindow* win, wxRect* rect = NULL);
void wxRichToolTipGenericImpl::ShowFor(wxWindow* win, wxRect* rect)
{
// Set the focus to the window the tooltip refers to to make it look active.
win->SetFocus();