]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/x11/dcclient.h
added missing wxUniChar::operator=(wxUniCharRef)
[wxWidgets.git] / include / wx / x11 / dcclient.h
index 7f939a3ec9a58bd7a2872faae48c0fff8eb70ece..6ae4962b32c2043ee90cdbf34659a039b42b2bc1 100644 (file)
@@ -32,10 +32,10 @@ class WXDLLIMPEXP_CORE wxClientDC;
 class WXDLLIMPEXP_CORE wxWindowDC : public wxDC
 {
 public:
-    wxWindowDC();
+    wxWindowDC() { Init(); }
     wxWindowDC( wxWindow *win );
 
-    ~wxWindowDC();
+    virtual ~wxWindowDC();
 
     virtual bool CanDrawBitmap() const { return true; }
     virtual bool CanGetTextExtent() const { return true; }
@@ -116,7 +116,9 @@ protected:
         wxCoord *x, wxCoord *y,
         wxCoord *descent = NULL,
         wxCoord *externalLeading = NULL,
-        wxFont *theFont = NULL) const;
+        const wxFont *theFont = NULL) const;
+
+    void Init();
 
     WXDisplay    *m_display;
     WXWindow      m_window;