]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/ole/dropsrc.cpp
compilation fix
[wxWidgets.git] / src / msw / ole / dropsrc.cpp
index a36ac856da0316da0c7dd89ed0eadce553fcabc5..4a38d8125f7d2b581b8a2eb6b781dade5cdf478a 100644 (file)
@@ -183,7 +183,7 @@ wxDropSource::~wxDropSource()
 // Notes   : you must call SetData() before if you had used def ctor
 wxDragResult wxDropSource::DoDragDrop(bool bAllowMove)
 {
-  wxCHECK_MSG( m_pData != NULL, wxDragNone, "No data in wxDropSource!" );
+  wxCHECK_MSG( m_pData != NULL, wxDragNone, _T("No data in wxDropSource!") );
 
   DWORD dwEffect;
   HRESULT hr = ::DoDragDrop(m_pData->GetInterface(),
@@ -215,10 +215,10 @@ wxDragResult wxDropSource::DoDragDrop(bool bAllowMove)
   else {
     if ( FAILED(hr) ) {
       wxLogApiError("DoDragDrop", hr);
-      wxLogError("Drag & drop operation failed.");
+      wxLogError(_T("Drag & drop operation failed."));
     }
     else {
-      wxLogDebug("Unexpected success return code %08lx from DoDragDrop.", hr);
+      wxLogDebug(_T("Unexpected success return code %08lx from DoDragDrop."), hr);
     }
 
     return wxDragError;