// Created: 11.09.00
// RCS-ID: $Id$
// Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
-// Licence: wxWindows license
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// ============================================================================
// headers
// ----------------------------------------------------------------------------
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "univradiobox.h"
#endif
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);