]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/ole/droptgt.cpp
replaced T() makro with wxT() due to namespace probs, _T() exists, too
[wxWidgets.git] / src / msw / ole / droptgt.cpp
index 7101ef5eb2c2c06913e22501fb1506b6c98c8cbc..003a29891a328f6e347a8d4308e12377b3a18659 100644 (file)
@@ -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);
     }
   }