]> git.saurik.com Git - wxWidgets.git/commitdiff
corrected warning (missing const)
authorGilles Depeyrot <gilles_depeyrot@mac.com>
Sat, 19 Apr 2003 08:12:15 +0000 (08:12 +0000)
committerGilles Depeyrot <gilles_depeyrot@mac.com>
Sat, 19 Apr 2003 08:12:15 +0000 (08:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20279 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/clipbrd.cpp
src/mac/clipbrd.cpp

index 942a17c6fb9f7ec927d913fe707ee3c5c3f3bb16..7f9987f0f6093cb3871c562d9bfd7fd655d54a64 100644 (file)
@@ -10,7 +10,6 @@
 /////////////////////////////////////////////////////////////////////////////
 
 #ifdef __GNUG__
-#pragma implementation
 #pragma implementation "clipbrd.h"
 #endif
 
@@ -143,7 +142,7 @@ void *wxGetClipboardData(wxDataFormat dataFormat, long *len)
 #if wxUSE_UNICODE
         wxCharBuffer buf = st.ToAscii() ;
 #else
-        char* buf = st ;
+        const char* buf = st ;
 #endif
         char* newdata = new char[strlen(buf)+1] ;
         memcpy( newdata , buf , strlen(buf)+1 ) ;
index 942a17c6fb9f7ec927d913fe707ee3c5c3f3bb16..7f9987f0f6093cb3871c562d9bfd7fd655d54a64 100644 (file)
@@ -10,7 +10,6 @@
 /////////////////////////////////////////////////////////////////////////////
 
 #ifdef __GNUG__
-#pragma implementation
 #pragma implementation "clipbrd.h"
 #endif
 
@@ -143,7 +142,7 @@ void *wxGetClipboardData(wxDataFormat dataFormat, long *len)
 #if wxUSE_UNICODE
         wxCharBuffer buf = st.ToAscii() ;
 #else
-        char* buf = st ;
+        const char* buf = st ;
 #endif
         char* newdata = new char[strlen(buf)+1] ;
         memcpy( newdata , buf , strlen(buf)+1 ) ;