]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/radiobox.cpp
Enable variadic macros for VC9 and later.
[wxWidgets.git] / src / msw / radiobox.cpp
index c33b5644748fe6d6760e3e428d224b5f5fb38413..1414e04eddd078bb2a19f29a5d477bc6bea1ff0b 100644 (file)
@@ -498,7 +498,7 @@ void wxRadioBox::DoSetItemToolTip(unsigned int item, wxToolTip *tooltip)
     // we have already checked for the item to be valid in wxRadioBoxBase
     const HWND hwndRbtn = (*m_radioButtons)[item];
     if ( tooltip != NULL )
-        tooltip->Add(hwndRbtn);
+        tooltip->AddOtherWindow(hwndRbtn);
     else // unset the tooltip
         wxToolTip::Remove(hwndRbtn, 0, wxRect(0,0,0,0));
         // the second parameter can be zero since it's ignored by Remove()