]> git.saurik.com Git - wxWidgets.git/commitdiff
my cvs dir got screwed up and didn't commit this...
authorRyan Norton <wxprojects@comcast.net>
Thu, 21 Apr 2005 23:35:02 +0000 (23:35 +0000)
committerRyan Norton <wxprojects@comcast.net>
Thu, 21 Apr 2005 23:35:02 +0000 (23:35 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33811 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/mac/corefoundation/cfstring.h

index 428e5c8c14164a758391ecfd85765ae55b3da7fd..526f5791a52b23595617ab10570f38cc983b23d6 100644 (file)
@@ -9,6 +9,9 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
+#ifndef __WX_CFSTRINGHOLDER_H__
+#define __WX_CFSTRINGHOLDER_H__
+
 #ifdef __DARWIN__
     #include <CoreFoundation/CFString.h>
 #else
 #ifdef __DARWIN__
     #include <CoreFoundation/CFString.h>
 #else
@@ -70,7 +73,7 @@ public:
 
     void Assign( const wxString &str , wxFontEncoding encoding ) ;
 
 
     void Assign( const wxString &str , wxFontEncoding encoding ) ;
 
-    operator CFStringRef () { return m_cfs; }
+    operator CFStringRef () const { return m_cfs; }
     wxString AsString( wxFontEncoding encoding = wxFONTENCODING_DEFAULT ) ;
 
 private:
     wxString AsString( wxFontEncoding encoding = wxFONTENCODING_DEFAULT ) ;
 
 private:
@@ -81,3 +84,4 @@ private:
     DECLARE_NO_COPY_CLASS( wxMacCFStringHolder )
 } ;
 
     DECLARE_NO_COPY_CLASS( wxMacCFStringHolder )
 } ;
 
+#endif //__WXCFSTRINGHOLDER_H__