]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/caret.cpp
some updates for new methods, constants, etc.
[wxWidgets.git] / src / msw / caret.cpp
index cacc6801f5128bac973e5c83bb454e2b05f7a1a4..daf68049e9be3a1a451283479536c1ad0f5d7b17 100644 (file)
@@ -46,7 +46,9 @@
 #ifdef __WIN16__
     #define CALL_CARET_API(api, args)   api args
 #else // Win32
-    #define CALL_CARET_API(api, args)   if ( !api args ) wxLogLastError(#api)
+    #define CALL_CARET_API(api, args)   \
+        if ( !api args )                \
+            wxLogLastError(_T(#api))
 #endif // Win16/32
 
 // ===========================================================================
@@ -63,7 +65,7 @@ int wxCaretBase::GetBlinkTime()
     int blinkTime = ::GetCaretBlinkTime();
     if ( !blinkTime )
     {
-        wxLogLastError("GetCaretBlinkTime");
+        wxLogLastError(wxT("GetCaretBlinkTime"));
     }
 
     return blinkTime;