]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/font.cpp
miscellaneous wxFont enhancements (patch 1496606):
[wxWidgets.git] / src / palmos / font.cpp
index d75397c30eef0eb6eeff2f36170f6ec76307fe3a..5eebd464f5f37566715f35f00eed03b7d9b13cb8 100644 (file)
@@ -251,7 +251,7 @@ public:
             m_weight = weight;
     }
 
-    void SetFaceName(const wxString& faceName)
+    bool SetFaceName(const wxString& faceName)
     {
         if ( m_nativeFontInfoOk )
             m_nativeFontInfo.SetFaceName(faceName);
@@ -363,10 +363,6 @@ void wxNativeFontInfo::SetPixelSize(const wxSize& pixelSize)
 // wxFont
 // ----------------------------------------------------------------------------
 
-void wxFont::Init()
-{
-}
-
 bool wxFont::Create(const wxNativeFontInfo& info, WXHFONT hFont)
 {
     return false;
@@ -448,8 +444,9 @@ void wxFont::SetWeight(int weight)
 {
 }
 
-void wxFont::SetFaceName(const wxString& faceName)
+bool wxFont::SetFaceName(const wxString& faceName)
 {
+    return true;
 }
 
 void wxFont::SetUnderlined(bool underlined)