added alignment style to wxStaticText handler

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10408 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2001-06-01 21:47:13 +00:00
parent be329a3de3
commit 938123ef4d

View File

@ -25,7 +25,10 @@
wxStaticTextXmlHandler::wxStaticTextXmlHandler() wxStaticTextXmlHandler::wxStaticTextXmlHandler()
: wxXmlResourceHandler() : wxXmlResourceHandler()
{ {
ADD_STYLE( wxST_NO_AUTORESIZE ); ADD_STYLE(wxST_NO_AUTORESIZE);
ADD_STYLE(wxALIGN_LEFT);
ADD_STYLE(wxALIGN_RIGHT);
ADD_STYLE(wxALIGN_CENTRE);
AddWindowStyles(); AddWindowStyles();
} }