X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f94d33c5846b29ef750db291745b63c71980f2e7..6f026b5b63fe7ccb025e84509886f74772b9df13:/src/dfb/wrapdfb.cpp diff --git a/src/dfb/wrapdfb.cpp b/src/dfb/wrapdfb.cpp index c474b48e2b..f62e9c367b 100644 --- a/src/dfb/wrapdfb.cpp +++ b/src/dfb/wrapdfb.cpp @@ -3,7 +3,6 @@ // Purpose: wx wrappers for DirectFB interfaces // Author: Vaclav Slavik // Created: 2006-09-04 -// RCS-ID: $Id$ // Copyright: (c) 2006 REA Elektronik GmbH // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -36,7 +35,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 +60,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; } }