]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/ole/dropsrc.cpp
makeg95.env edited for Mingw32/gcc 2.95 compilation; _T not redefined for
[wxWidgets.git] / src / msw / ole / dropsrc.cpp
index 2943fd55d79e56199c3ac87a5218d7f021ea7f32..6e6e2886d5c899c0b7b236a89f3877f45fccfbad 100644 (file)
@@ -189,7 +189,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, T("No data in wxDropSource!") );
+  wxCHECK_MSG( m_pData != NULL, wxDragNone, wxT("No data in wxDropSource!") );
 
   DWORD dwEffect;
   HRESULT hr = ::DoDragDrop(m_pData->GetInterface(),
@@ -221,10 +221,10 @@ wxDragResult wxDropSource::DoDragDrop(bool bAllowMove)
   else {
     if ( FAILED(hr) ) {
       wxLogApiError("DoDragDrop", hr);
-      wxLogError(T("Drag & drop operation failed."));
+      wxLogError(wxT("Drag & drop operation failed."));
     }
     else {
-      wxLogDebug(T("Unexpected success return code %08lx from DoDragDrop."), hr);
+      wxLogDebug(wxT("Unexpected success return code %08lx from DoDragDrop."), hr);
     }
 
     return wxDragError;