]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/listbox.cpp
fixing and completing iPhone sound
[wxWidgets.git] / src / os2 / listbox.cpp
index 688ccfbf516a66c67684e50db2193c00155e6344..2c636032e0a28da4160372f0cce9c5f0e64fa28a 100644 (file)
@@ -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());