X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..3a5910cbe95603698b984cc6d8d41bbe7e2f89d9:/include/wx/motif/dc.h

diff --git a/include/wx/motif/dc.h b/include/wx/motif/dc.h
index 5368b113b0..a7926f69f2 100644
--- a/include/wx/motif/dc.h
+++ b/include/wx/motif/dc.h
@@ -12,8 +12,8 @@
 #ifndef _WX_DC_H_
 #define _WX_DC_H_
 
-#ifdef __GNUG__
-    #pragma interface "dc.h"
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
+#pragma interface "dc.h"
 #endif
 
 #include "wx/pen.h"
@@ -27,14 +27,14 @@
 //-----------------------------------------------------------------------------
 
 #ifndef MM_TEXT
-    #define MM_TEXT         0
-    #define MM_ISOTROPIC    1
-    #define MM_ANISOTROPIC  2
-    #define MM_LOMETRIC     3
-    #define MM_HIMETRIC     4
-    #define MM_TWIPS        5
-    #define MM_POINTS       6
-    #define MM_METRIC       7
+#define MM_TEXT         0
+#define MM_ISOTROPIC    1
+#define MM_ANISOTROPIC  2
+#define MM_LOMETRIC     3
+#define MM_HIMETRIC     4
+#define MM_TWIPS        5
+#define MM_POINTS       6
+#define MM_METRIC       7
 #endif
 
 //-----------------------------------------------------------------------------
@@ -52,8 +52,6 @@ public:
     // implement base class pure virtuals
     // ----------------------------------
 
-    virtual void DestroyClippingRegion();
-
     virtual wxSize GetPPI() const;
 
     virtual void SetMapMode(int mode);
@@ -66,15 +64,15 @@ 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);
+        wxCoord width, wxCoord height);
     virtual void DoGetSize(int *width, int *height) const;
     virtual void DoGetSizeMM(int* width, int* height) const;
 
 public:
-    void ComputeScaleAndOrigin();
+    virtual void ComputeScaleAndOrigin();
 
     wxCoord XDEV2LOG(wxCoord x) const
     {
@@ -165,4 +163,4 @@ public:
 };
 
 #endif
-    // _WX_DC_H_
+// _WX_DC_H_