]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/dc.h
set/get validator for wxTextCtrl part of wxComboCtrl and not the combo itself (patch...
[wxWidgets.git] / include / wx / motif / dc.h
index f726723241011f2d4cf3d3e52e1dd4f6e1ae46b2..8d60b16414811186dd9d21ba22e961a383bcbff7 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        dc.h
+// Name:        wx/motif/dc.h
 // Purpose:     wxDC class
 // Author:      Julian Smart
 // Modified by:
 #ifndef _WX_DC_H_
 #define _WX_DC_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "dc.h"
-#endif
-
 #include "wx/pen.h"
 #include "wx/brush.h"
 #include "wx/icon.h"
@@ -47,7 +43,7 @@ class WXDLLEXPORT wxDC : public wxDCBase
 
 public:
     wxDC();
-    ~wxDC() { }
+    virtual ~wxDC() { }
 
     // implement base class pure virtuals
     // ----------------------------------
@@ -64,7 +60,7 @@ public:
 protected:
     virtual void DoDrawIcon(const wxIcon& icon, wxCoord x, wxCoord y);
     virtual void DoDrawBitmap(const wxBitmap &bmp, wxCoord x, wxCoord y,
-        bool useMask = FALSE);
+        bool useMask = false);
 
     virtual void DoSetClippingRegion(wxCoord x, wxCoord y,
         wxCoord width, wxCoord height);
@@ -72,7 +68,7 @@ protected:
     virtual void DoGetSizeMM(int* width, int* height) const;
 
 public:
-    void ComputeScaleAndOrigin();
+    virtual void ComputeScaleAndOrigin();
 
     wxCoord XDEV2LOG(wxCoord x) const
     {