]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/dc.h
Removed redundant code
[wxWidgets.git] / include / wx / gtk / dc.h
index a2b62b262ebbd6da7d9d0ba04c1a86c96b35da59..a778ba23db3c0dfec6e7047f8ce170618b9c1c65 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,15 @@ public:
 
     virtual void SetAxisOrientation( bool xLeftRight, bool yBottomUp );
 
+    virtual void ComputeScaleAndOrigin();
+
+    virtual GdkWindow* GetGDKWindow() const { return NULL; }
+    virtual wxBitmap GetSelectedBitmap() const { return wxNullBitmap; }        
+
 protected:
     // implementation
     // --------------
 
-    virtual void ComputeScaleAndOrigin();
-
     wxCoord XDEV2LOG(wxCoord x) const
     {
         return DeviceToLogicalX(x);