]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/radiobox.cpp
compilation fix for Windows after the last change (misplaced #endif)
[wxWidgets.git] / src / msw / radiobox.cpp
index cdf514108516ca6659673b6f31121f45cfe9c54b..0bdcb7d346da92bbe5a1e4097230595d1c006d2c 100644 (file)
@@ -462,7 +462,9 @@ void wxRadioBox::DoSetItemToolTip(unsigned int item, wxToolTip *tooltip)
     if ( tooltip != NULL )
         tooltip->Add(hwndRbtn);
     else // unset the tooltip
-        wxToolTip::Remove(hwndRbtn);
+        wxToolTip::Remove(hwndRbtn, 0, wxRect(0,0,0,0));
+        // the second parameter can be zero since it's ignored by Remove()
+        // as we pass a rect for which wxRect::IsEmpty()==true...
 }
 
 #endif // wxUSE_TOOLTIPS