From 1898e412ad2eefe90786a3a15fb7080f017f7639 Mon Sep 17 00:00:00 2001 From: David Elliott Date: Wed, 1 Aug 2007 04:29:40 +0000 Subject: [PATCH] Add missing wxT. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@47839 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/cocoa/bitmap.mm | 4 ++-- src/cocoa/cursor.mm | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cocoa/bitmap.mm b/src/cocoa/bitmap.mm index 8fff0adb26..26f737c298 100644 --- a/src/cocoa/bitmap.mm +++ b/src/cocoa/bitmap.mm @@ -542,7 +542,7 @@ wxMask::~wxMask() bool wxMask::Create(const wxBitmap& bitmap) { // TODO - wxLogDebug("Cannot yet create a mask from a mono bitmap"); + wxLogDebug(wxT("Cannot yet create a mask from a mono bitmap")); return FALSE; } @@ -551,7 +551,7 @@ bool wxMask::Create(const wxBitmap& bitmap) bool wxMask::Create(const wxBitmap& bitmap, int paletteIndex) { // TODO - wxLogDebug("Cannot yet create a mask from a palette bitmap"); + wxLogDebug(wxT("Cannot yet create a mask from a palette bitmap")); return FALSE; } diff --git a/src/cocoa/cursor.mm b/src/cocoa/cursor.mm index 7f3ec31b19..80c7ba0aab 100644 --- a/src/cocoa/cursor.mm +++ b/src/cocoa/cursor.mm @@ -262,7 +262,7 @@ static inline NSCursor* NSCursorCreateWithPrivateId(short sIndex) // TODO: Remove in trunk.. needed for 2.8 NSCursor* wxGetStockCursor( short sIndex ) { - wxLogDebug("Please do not call wxGetStockCursor."); + wxLogDebug(wxT("Please do not call wxGetStockCursor.")); return NSCursorCreateWithPrivateId(sIndex); } @@ -432,7 +432,7 @@ wxCursor::wxCursor(int stock_cursor_id) // Stage 3: Give up, complain, and use a normal arrow if(M_CURSORDATA->m_hCursor == nil) { - wxLogDebug("Could not find suitable cursor for wxStockCursor = %d. Using normal pointer.", stock_cursor_id); + wxLogDebug(wxT("Could not find suitable cursor for wxStockCursor = %d. Using normal pointer."), stock_cursor_id); M_CURSORDATA->m_hCursor = [[NSCursor arrowCursor] retain]; }