X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d9c4ffa89374b337ff6416ef5d9e742c026f11e2..96c9640205933ad0673d5af2c96af0816c50160c:/src/msw/radiobox.cpp?ds=sidebyside diff --git a/src/msw/radiobox.cpp b/src/msw/radiobox.cpp index c33b564474..1414e04edd 100644 --- a/src/msw/radiobox.cpp +++ b/src/msw/radiobox.cpp @@ -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()