X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e4de7a77593d948c7c7f56045b082dcfa7e794a4..deb0a11e9907e4834247d7cddebe9edbb71dd34b:/src/os2/listbox.cpp diff --git a/src/os2/listbox.cpp b/src/os2/listbox.cpp index 688ccfbf51..2c636032e0 100644 --- a/src/os2/listbox.cpp +++ b/src/os2/listbox.cpp @@ -294,7 +294,7 @@ int wxListBox::DoInsertItems(const wxArrayStringsAdapter & items, n = (int)::WinSendMsg(GetHwnd(), LM_INSERTITEM, (MPARAM)lIndexType, (MPARAM)items[i].wx_str()); if (n < 0) { - wxLogLastError(_T("WinSendMsg(LM_INSERTITEM)")); + wxLogLastError(wxT("WinSendMsg(LM_INSERTITEM)")); n = wxNOT_FOUND; break; } @@ -305,7 +305,7 @@ int wxListBox::DoInsertItems(const wxArrayStringsAdapter & items, { wxOwnerDrawn* pNewItem = CreateItem(n); // dummy argument wxScreenDC vDc; // FIXME: is it really needed here? - + pNewItem->SetName(items[i]); m_aItems.Insert(pNewItem, n); pNewItem->SetFont(GetFont());