projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixed and refactored wxPropertyGridManager decsription text box painting
[wxWidgets.git]
/
src
/
xrc
/
xh_radbt.cpp
diff --git
a/src/xrc/xh_radbt.cpp
b/src/xrc/xh_radbt.cpp
index 1fa49b84ecf91d099b65ca300835f891c0691831..066433bab3f49c6ad8b3f7aad8ed468b87adadf1 100644
(file)
--- a/
src/xrc/xh_radbt.cpp
+++ b/
src/xrc/xh_radbt.cpp
@@
-1,5
+1,5
@@
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
-// Name: xh_radbt.cpp
+// Name:
src/xrc/
xh_radbt.cpp
// Purpose: XRC resource for wxRadioButton
// Author: Bob Mitchell
// Created: 2000/03/21
// Purpose: XRC resource for wxRadioButton
// Author: Bob Mitchell
// Created: 2000/03/21
@@
-8,10
+8,6
@@
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
-#pragma implementation "xh_radbt.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
@@
-19,10
+15,13
@@
#pragma hdrstop
#endif
#pragma hdrstop
#endif
-#if wxUSE_X
ML && wxUSE_XRC && wxUSE_RADIOBOX
+#if wxUSE_X
RC && wxUSE_RADIOBTN
#include "wx/xrc/xh_radbt.h"
#include "wx/xrc/xh_radbt.h"
-#include "wx/radiobut.h"
+
+#ifndef WX_PRECOMP
+ #include "wx/radiobut.h"
+#endif
IMPLEMENT_DYNAMIC_CLASS(wxRadioButtonXmlHandler, wxXmlResourceHandler)
IMPLEMENT_DYNAMIC_CLASS(wxRadioButtonXmlHandler, wxXmlResourceHandler)
@@
-30,6
+29,7
@@
wxRadioButtonXmlHandler::wxRadioButtonXmlHandler()
: wxXmlResourceHandler()
{
XRC_ADD_STYLE(wxRB_GROUP);
: wxXmlResourceHandler()
{
XRC_ADD_STYLE(wxRB_GROUP);
+ XRC_ADD_STYLE(wxRB_SINGLE);
AddWindowStyles();
}
AddWindowStyles();
}
@@
-63,4
+63,4
@@
bool wxRadioButtonXmlHandler::CanHandle(wxXmlNode *node)
return IsOfClass(node, wxT("wxRadioButton"));
}
return IsOfClass(node, wxT("wxRadioButton"));
}
-#endif // wxUSE_X
ML && wxUSE_XRC && wxUSE_NOTEBOOK
+#endif // wxUSE_X
RC && wxUSE_RADIOBTN