]> git.saurik.com Git - wxWidgets.git/commitdiff
Implement setFont on the iOS port of wxStaticText.
authorJay Freeman (saurik) <saurik@saurik.com>
Mon, 6 Jul 2015 07:22:17 +0000 (00:22 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Mon, 6 Jul 2015 07:22:51 +0000 (00:22 -0700)
src/osx/iphone/stattext.mm

index b0994d07339c5809ece30526fd3d90dfcae7539a..b058c2bf5a7057bb3f6702f334d35b3fdc4911fe 100644 (file)
@@ -52,6 +52,12 @@ public:
     {
     }
 
+    virtual void SetFont( const wxFont & font , const wxColour& WXUNUSED(foreground) , long WXUNUSED(windowStyle), bool WXUNUSED(ignoreBlack) )
+    {
+        wxUILabel* v = (wxUILabel*)GetWXWidget();
+        [v setFont: font.OSXGetUIFont()];
+    }
+
     virtual void SetLabel(const wxString& title, wxFontEncoding encoding)
     {
         wxUILabel* v = (wxUILabel*)GetWXWidget();