projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Wrappers for *ToText
[wxWidgets.git]
/
src
/
xrc
/
xh_sttxt.cpp
diff --git
a/src/xrc/xh_sttxt.cpp
b/src/xrc/xh_sttxt.cpp
index 955642ed64a8176b519ca63c1fa8ab042191b522..a65e2b4b4fdcba43b14f6c4637ecb89586f785b3 100644
(file)
--- a/
src/xrc/xh_sttxt.cpp
+++ b/
src/xrc/xh_sttxt.cpp
@@
-7,7
+7,7
@@
// Copyright: (c) 2000 Bob Mitchell and Verant Interactive
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// Copyright: (c) 2000 Bob Mitchell and Verant Interactive
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-
+
#ifdef __GNUG__
#pragma implementation "xh_sttxt.h"
#endif
#ifdef __GNUG__
#pragma implementation "xh_sttxt.h"
#endif
@@
-22,8
+22,10
@@
#include "wx/xrc/xh_sttxt.h"
#include "wx/stattext.h"
#include "wx/xrc/xh_sttxt.h"
#include "wx/stattext.h"
-wxStaticTextXmlHandler::wxStaticTextXmlHandler()
-: wxXmlResourceHandler()
+IMPLEMENT_DYNAMIC_CLASS(wxStaticTextXmlHandler, wxXmlResourceHandler)
+
+wxStaticTextXmlHandler::wxStaticTextXmlHandler()
+: wxXmlResourceHandler()
{
XRC_ADD_STYLE(wxST_NO_AUTORESIZE);
XRC_ADD_STYLE(wxALIGN_LEFT);
{
XRC_ADD_STYLE(wxST_NO_AUTORESIZE);
XRC_ADD_STYLE(wxALIGN_LEFT);
@@
-33,7
+35,7
@@
wxStaticTextXmlHandler::wxStaticTextXmlHandler()
}
wxObject *wxStaticTextXmlHandler::DoCreateResource()
}
wxObject *wxStaticTextXmlHandler::DoCreateResource()
-{
+{
XRC_MAKE_INSTANCE(text, wxStaticText)
text->Create(m_parentAsWindow,
XRC_MAKE_INSTANCE(text, wxStaticText)
text->Create(m_parentAsWindow,
@@
-44,7
+46,7
@@
wxObject *wxStaticTextXmlHandler::DoCreateResource()
GetName());
SetupWindow(text);
GetName());
SetupWindow(text);
-
+
return text;
}
return text;
}