X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e90c1d2a19361551eb07778280f22be3e759cf64..d5a07b9ec9bacd5b6ec5092b03450488c4b7d420:/src/msw/ole/droptgt.cpp?ds=sidebyside diff --git a/src/msw/ole/droptgt.cpp b/src/msw/ole/droptgt.cpp index 7101ef5eb2..003a29891a 100644 --- a/src/msw/ole/droptgt.cpp +++ b/src/msw/ole/droptgt.cpp @@ -136,7 +136,7 @@ STDMETHODIMP wxIDropTarget::DragEnter(IDataObject *pIDataSource, POINTL pt, DWORD *pdwEffect) { - wxLogDebug(T("IDropTarget::DragEnter")); + wxLogDebug(wxT("IDropTarget::DragEnter")); wxASSERT( m_pIDataObject == NULL ); @@ -187,7 +187,7 @@ STDMETHODIMP wxIDropTarget::DragOver(DWORD grfKeyState, // Notes : good place to do any clean-up STDMETHODIMP wxIDropTarget::DragLeave() { - wxLogDebug(T("IDropTarget::DragLeave")); + wxLogDebug(wxT("IDropTarget::DragLeave")); // remove the UI feedback m_pTarget->OnLeave(); @@ -212,7 +212,7 @@ STDMETHODIMP wxIDropTarget::Drop(IDataObject *pIDataSource, POINTL pt, DWORD *pdwEffect) { - wxLogDebug(T("IDropTarget::Drop")); + wxLogDebug(wxT("IDropTarget::Drop")); // TODO I don't know why there is this parameter, but so far I assume // that it's the same we've already got in DragEnter @@ -385,7 +385,7 @@ bool wxFileDropTarget::OnDrop(long x, long y, const void *pData) UINT len2 = ::DragQueryFile(hdrop, n, aszFiles[n], len); if ( len2 != len - 1 ) { - wxLogDebug(T("In wxFileDropTarget::OnDrop DragQueryFile returned %d " + wxLogDebug(wxT("In wxFileDropTarget::OnDrop DragQueryFile returned %d " "characters, %d expected."), len2, len - 1); } }