ADDED wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
Corrected inheritence of wxTreeEvent, wxNotebookEvent, wxListEvent on wxMSW and wxGTK Corrected scrolling step etc. in wxListCtrl Built-in correction of out-of-bounds values for position of scrollbar thumb Reverted interpretation of wxVERTICAL for radiobox Applied Phls patch for wxStaticText git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1172 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -86,7 +86,7 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title,
|
||||
|
||||
GtkRadioButton *m_radio = (GtkRadioButton*) NULL;
|
||||
|
||||
if (m_windowStyle & wxRA_VERTICAL)
|
||||
if (m_windowStyle & wxRA_HORIZONTAL)
|
||||
{
|
||||
GSList *radio_button_group = (GSList *) NULL;
|
||||
for (int i = 0; i < n; i++)
|
||||
@@ -194,7 +194,7 @@ void wxRadioBox::OnSize( wxSizeEvent &event )
|
||||
int x = m_x+5;
|
||||
int y = m_y+15;
|
||||
|
||||
if (m_windowStyle & wxRA_VERTICAL)
|
||||
if (m_windowStyle & wxRA_HORIZONTAL)
|
||||
{
|
||||
wxNode *node = m_boxes.First();
|
||||
while (node)
|
||||
|
Reference in New Issue
Block a user