]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/dc.h
make wxVarVScrollLegacyAdaptor::OnGetLineHeight() non-pure virtual to fix compilation...
[wxWidgets.git] / include / wx / gtk / dc.h
index a2b62b262ebbd6da7d9d0ba04c1a86c96b35da59..19f11b607cc68089a09d96fe5e79bb97cf722d5d 100644 (file)
@@ -70,7 +70,7 @@ class WXDLLIMPEXP_CORE wxDC : public wxDCBase
 {
 public:
     wxDC();
-    ~wxDC() { }
+    virtual ~wxDC() { }
 
 #if wxUSE_PALETTE
     void SetColourMap( const wxPalette& palette ) { SetPalette(palette); };
@@ -92,12 +92,14 @@ public:
 
     virtual void SetAxisOrientation( bool xLeftRight, bool yBottomUp );
 
+    virtual void ComputeScaleAndOrigin();
+
+    virtual GdkWindow* GetGDKWindow() const { return NULL; }
+
 protected:
     // implementation
     // --------------
 
-    virtual void ComputeScaleAndOrigin();
-
     wxCoord XDEV2LOG(wxCoord x) const
     {
         return DeviceToLogicalX(x);