added wxStaticLine used in wxMessageBox

added wxNO_BORDER style to radiobox


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2348 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-05-05 21:42:48 +00:00
parent aa64626e23
commit b0351fc91e
10 changed files with 271 additions and 1 deletions

View File

@@ -35,6 +35,10 @@
#include "wx/generic/msgdlgg.h"
#ifdef __WXGTK__
#include "wx/statline.h"
#endif
///////////////////////////////////////////////////////////////////
// New dialog box implementations
@@ -146,6 +150,10 @@ wxGenericMessageDialog::wxGenericMessageDialog( wxWindow *parent, const wxString
n++;
}
#ifdef __WXGTK__
(void) new wxStaticLine( this, -1, wxPoint(0,y-20), wxSize(w+30, 5) );
#endif
SetSize( w+30, y+40 );
Centre( wxBOTH );