]> git.saurik.com Git - wxWidgets.git/commitdiff
clang fix, fixes #12332
authorStefan Csomor <csomor@advancedconcepts.ch>
Fri, 28 Jan 2011 07:35:07 +0000 (07:35 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Fri, 28 Jan 2011 07:35:07 +0000 (07:35 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66801 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/osx/carbon/region.h
src/osx/carbon/region.cpp

index 1cf5bbef0fde02818a632405beacf3f208714084..282ee2a0595f8c70231d133278e4d62cbc67d7a4 100644 (file)
@@ -40,7 +40,7 @@ public:
     virtual bool IsEmpty() const;
 
     // Internal
-    const WXHRGN GetWXHRGN() const ;
+    WXHRGN GetWXHRGN() const ;
 
 protected:
     virtual wxGDIRefData *CreateGDIRefData() const;
index 2d5fad856963736fb2fd0eb0d741e09757c68848..36e322147a97f6b16970459a048969ab7eb2ed25 100644 (file)
@@ -288,7 +288,7 @@ bool wxRegion::IsEmpty() const
         return true ;
 }
 
-const WXHRGN wxRegion::GetWXHRGN() const
+WXHRGN wxRegion::GetWXHRGN() const
 {
     return M_REGION ;
 }