]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/stattext.cpp
The device origin can be set on WinCE, so use it and redefine conversion
[wxWidgets.git] / src / palmos / stattext.cpp
index 789e227e3f175b6f729c21556b3ec256a50e141a..61ec4eb58cd409079fc0bd0ab74ce7e8d65ab5ab 100644 (file)
@@ -94,7 +94,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