]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/font.cpp
Revised #ifndef WX_PRECOMP headers, added missing #include wx/wxcrtvararg.h
[wxWidgets.git] / src / motif / font.cpp
index fc503f190f49488c7fc36192871bba2a9821b375..15bc878ed719c4e22a4e161c578b517a4a88d06d 100644 (file)
@@ -344,6 +344,16 @@ wxFont::~wxFont()
 {
 }
 
+wxGDIRefData *wxFont::CreateGDIRefData() const
+{
+    return new wxFontRefData;
+}
+
+wxGDIRefData *wxFont::CloneGDIRefData(const wxGDIRefData *data) const
+{
+    return new wxFontRefData(*wx_static_cast(const wxFontRefData *, data));
+}
+
 // ----------------------------------------------------------------------------
 // change the font attributes
 // ----------------------------------------------------------------------------