]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/classic/cursor.cpp
compilation fix for iconv call
[wxWidgets.git] / src / mac / classic / cursor.cpp
index 71682cf5da636378241f4ef56ba0599ba9ebcca0..3f7e44d3b740ebfce091810595bd52d8401f683f 100644 (file)
@@ -94,10 +94,10 @@ wxCursor::wxCursor(char **bits)
 
 bool wxCursor::CreateFromXpm(const char **bits)
 {
-    wxCHECK_MSG( bits != NULL, FALSE, wxT("invalid cursor data") )
+    wxCHECK_MSG( bits != NULL, FALSE, wxT("invalid cursor data") );
     wxXPMDecoder decoder;
     wxImage img = decoder.ReadData(bits);
-    wxCHECK_MSG( img.Ok(), FALSE, wxT("invalid cursor data") )    
+    wxCHECK_MSG( img.Ok(), FALSE, wxT("invalid cursor data") );
        CreateFromImage( img ) ;
     return TRUE;
 }