]> git.saurik.com Git - wxWidgets.git/commitdiff
Compilation fixes after r73050.
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 28 Nov 2012 15:42:18 +0000 (15:42 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 28 Nov 2012 15:42:18 +0000 (15:42 +0000)
See #14862.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73051 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/richtooltipcmn.cpp
src/generic/richtooltipg.cpp

index c4671f63f171fd14b28dfe554320dda7d8d06c15..4231ea8c7eb5500922d24a00637c57c198a3ed10 100644 (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") );
 
index 282f27e7a94de3a973254db3eed7bcdd8f2f2161..82f8b1696608b2cd210a617eee1953f63d7d2f6d 100644 (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();