]> git.saurik.com Git - wxWidgets.git/commitdiff
Reduced deprecation warning frequency
authorJulian Smart <julian@anthemion.co.uk>
Fri, 24 Mar 2006 13:01:19 +0000 (13:01 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Fri, 24 Mar 2006 13:01:19 +0000 (13:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38343 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/mac/carbon/private.h
src/mac/carbon/utils.cpp

index 9e57b5f43a1d4518e7556fb7f846d061d8c17c8d..3f20c400762e7ee58f614477c1f9c57c5612e85a 100644 (file)
@@ -97,15 +97,8 @@ class WXDLLEXPORT wxMacPortSaver
     DECLARE_NO_COPY_CLASS(wxMacPortSaver)
 
 public:
-    wxMacPortSaver( GrafPtr port )
-    {
-        ::GetPort( &m_port ) ;
-        ::SetPort( port ) ;
-    }
-    ~wxMacPortSaver()
-    {
-        ::SetPort( m_port ) ;
-    }
+    wxMacPortSaver( GrafPtr port );
+    ~wxMacPortSaver();
 private :
     GrafPtr m_port ;
 } ;
index 0a18f998c2e030aed2b3b04083cf5a190397dd85..24cf97cdd40628db34fc4a9dbf893a8a75d6d98b 100644 (file)
@@ -1584,4 +1584,15 @@ CGColorSpaceRef wxMacGetGenericRGBColorSpace()
 }
 #endif
 
+wxMacPortSaver::wxMacPortSaver( GrafPtr port )
+{
+    ::GetPort( &m_port ) ;
+    ::SetPort( port ) ;
+}
+
+wxMacPortSaver::~wxMacPortSaver()
+{
+    ::SetPort( m_port ) ;
+}
+
 #endif // wxUSE_GUI