]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/clipbrd.cpp
Applied patch [ 735304 ] wxDisplay::ChangeMode - does not resize full-screen windows
[wxWidgets.git] / 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 ) ;