X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d4e5272b3a2abfb9d365df93c54c52de965ba7ef..5955710c8bd346e8be675bd1dbbd427723a57920:/src/univ/radiobox.cpp diff --git a/src/univ/radiobox.cpp b/src/univ/radiobox.cpp index 3ad1c07304..c758abf74b 100644 --- a/src/univ/radiobox.cpp +++ b/src/univ/radiobox.cpp @@ -6,7 +6,7 @@ // Created: 11.09.00 // RCS-ID: $Id$ // Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com) -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// // ============================================================================ @@ -17,7 +17,7 @@ // headers // ---------------------------------------------------------------------------- -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "univradiobox.h" #endif @@ -153,6 +153,11 @@ bool wxRadioBox::Create(wxWindow *parent, SetClientSize(DoGetBestClientSize()); } + // Need to move the radiobox in order to move the radio buttons + wxPoint actualPos = GetPosition(); + wxSize actualSize = GetSize(); + DoMoveWindow(actualPos.x, actualPos.y, actualSize.x, actualSize.y); + // radiobox should already have selection so select at least one item SetSelection(0);