projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Some new interfaces in common code requires an updated module definition file.
[wxWidgets.git]
/
contrib
/
src
/
xml
/
xh_chckb.cpp
diff --git
a/contrib/src/xml/xh_chckb.cpp
b/contrib/src/xml/xh_chckb.cpp
index 0351054f8fff010b9c80263e547c9e63a5c304f7..057de6e462713a5ff89fd5fb9475765f4201243c 100644
(file)
--- a/
contrib/src/xml/xh_chckb.cpp
+++ b/
contrib/src/xml/xh_chckb.cpp
@@
-34,14
+34,14
@@
wxObject *wxCheckBoxXmlHandler::DoCreateResource()
{
wxCheckBox *control = new wxCheckBox(m_ParentAsWindow,
GetID(),
{
wxCheckBox *control = new wxCheckBox(m_ParentAsWindow,
GetID(),
- GetText(
_
T("label")),
+ GetText(
wx
T("label")),
GetPosition(), GetSize(),
GetStyle(),
wxDefaultValidator,
GetName()
);
GetPosition(), GetSize(),
GetStyle(),
wxDefaultValidator,
GetName()
);
- control->SetValue( GetBool(
_
T("checked")));
+ control->SetValue( GetBool(
wx
T("checked")));
SetupWindow(control);
return control;
SetupWindow(control);
return control;
@@
-51,7
+51,7
@@
wxObject *wxCheckBoxXmlHandler::DoCreateResource()
bool wxCheckBoxXmlHandler::CanHandle(wxXmlNode *node)
{
bool wxCheckBoxXmlHandler::CanHandle(wxXmlNode *node)
{
- return IsOfClass(node,
_
T("wxCheckBox"));
+ return IsOfClass(node,
wx
T("wxCheckBox"));
}
#endif
}
#endif