X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a152561c76dbed50d23f28d6e5761b4ece968156..56d5b4b8609c49932530e3963ff35948afb2dc4c:/src/palmos/stattext.cpp diff --git a/src/palmos/stattext.cpp b/src/palmos/stattext.cpp index 789e227e3f..413c259f14 100644 --- a/src/palmos/stattext.cpp +++ b/src/palmos/stattext.cpp @@ -9,26 +9,24 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma implementation "stattext.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" #ifdef __BORLANDC__ -#pragma hdrstop + #pragma hdrstop #endif #if wxUSE_STATTEXT +#include "wx/stattext.h" + #ifndef WX_PRECOMP -#include "wx/event.h" -#include "wx/app.h" -#include "wx/brush.h" + #include "wx/event.h" + #include "wx/app.h" + #include "wx/brush.h" #endif -#include "wx/stattext.h" +#include #if wxUSE_EXTENDED_RTTI WX_DEFINE_FLAGS( wxStaticTextStyle ) @@ -94,7 +92,17 @@ bool wxStaticText::Create(wxWindow *parent, if(!wxControl::Create(parent, id, pos, size, style, wxDefaultValidator, name)) return false; - return wxControl::PalmCreateField(label, pos, size, false, false, leftAlign); + // note that wxALIGN_LEFT is equal to 0 so we shouldn't + // test for it using & operator + + JustificationType align = leftAlign; + + if ( style & wxALIGN_CENTRE ) + align = centerAlign ; + else if ( style & wxALIGN_RIGHT ) + align = rightAlign; + + return wxControl::PalmCreateField(label, pos, size, false, false, align); } wxBorder wxStaticText::GetDefaultBorder() const