traces of my debugging session, no real changes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11384 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-08-15 14:27:22 +00:00
parent d7eee191c5
commit c5639a8767
3 changed files with 32 additions and 9 deletions

View File

@@ -62,7 +62,7 @@
#ifdef __WXDEBUG__
static const wxChar *GetTymedName(DWORD tymed);
#else // !Debug
#define GetTymedName(tymed) ""
#define GetTymedName(tymed) _T("")
#endif // Debug/!Debug
// ----------------------------------------------------------------------------
@@ -621,7 +621,7 @@ STDMETHODIMP wxIDataObject::EnumFormatEtc(DWORD dwDir,
size_t nFormatCount = m_pDataObject->GetFormatCount(dir);
wxDataFormat format;
wxDataFormat *formats;
wxDataFormat *formats;
formats = nFormatCount == 1 ? &format : new wxDataFormat[nFormatCount];
m_pDataObject->GetAllFormats(formats, dir);
@@ -1029,7 +1029,8 @@ bool wxFileDataObject::GetDataHere(void *pData) const
*pbuf++ = wxT('\0');
}
*pbuf = wxT('\0'); // add final null terminator
// add final null terminator
*pbuf = wxT('\0');
return TRUE;
}