]> git.saurik.com Git - wxWidgets.git/commitdiff
Merged 47839 from 2.8 branch:
authorDavid Elliott <dfe@tgwbd.org>
Wed, 1 Aug 2007 04:31:28 +0000 (04:31 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Wed, 1 Aug 2007 04:31:28 +0000 (04:31 +0000)
Add missing wxT.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47840 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/cocoa/bitmap.mm
src/cocoa/cursor.mm

index a79df7fde95792325b46342d9228937fcd1d1357..d075f0a56d41d93dee9f227b4eca4a809c2e3995 100644 (file)
@@ -538,7 +538,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;
 }
 
@@ -547,7 +547,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;
 }
 
index a1fad8eba59a713bd3407956e4d2cff6885c2fcd..126ef111aa8e521de6945f1d0cea00f228cb5b13 100644 (file)
@@ -425,7 +425,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];
     }