X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f94d33c5846b29ef750db291745b63c71980f2e7..64ea838d8f4d1853b7d850db93ee565e901d099a:/src/dfb/wrapdfb.cpp?ds=sidebyside diff --git a/src/dfb/wrapdfb.cpp b/src/dfb/wrapdfb.cpp index c474b48e2b..6159b7df16 100644 --- a/src/dfb/wrapdfb.cpp +++ b/src/dfb/wrapdfb.cpp @@ -36,7 +36,7 @@ bool wxDfbCheckReturn(DFBResult code) // these are programming errors, assert: #define DFB_ASSERT(code) \ case code: \ - wxFAIL_MSG( "DirectFB error: " _T(#code) ); \ + wxFAIL_MSG( "DirectFB error: " wxT(#code) ); \ return false \ DFB_ASSERT(DFB_DEAD); @@ -61,7 +61,7 @@ bool wxDfbCheckReturn(DFBResult code) default: // FIXME: should handle the errors individually - wxLogError(_("DirectFB error %d occured."), (int)code); + wxLogError(_("DirectFB error %d occurred."), (int)code); return false; } }