Add missing wxT.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47840
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
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;
}
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;
}
// 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];
}