qwindowsmime.cpp: add missing qPrintable in qDebug line
(it led to printing out garbage, when enabling QMIME_DEBUG) Change-Id: Iaacd9139ac09e7637930317535631be8132fe0a4 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@theqtcompany.com>
This commit is contained in:
parent
17472a2ba3
commit
a4a33a284f
@ -1452,6 +1452,7 @@ QWindowsMime * QWindowsMimeConverter::converterToMime(const QString &mimeType, I
|
|||||||
|
|
||||||
QStringList QWindowsMimeConverter::allMimesForFormats(IDataObject *pDataObj) const
|
QStringList QWindowsMimeConverter::allMimesForFormats(IDataObject *pDataObj) const
|
||||||
{
|
{
|
||||||
|
qCDebug(lcQpaMime) << "QWindowsMime::allMimesForFormats()";
|
||||||
ensureInitialized();
|
ensureInitialized();
|
||||||
QStringList formats;
|
QStringList formats;
|
||||||
LPENUMFORMATETC FAR fmtenum;
|
LPENUMFORMATETC FAR fmtenum;
|
||||||
@ -1461,10 +1462,9 @@ QStringList QWindowsMimeConverter::allMimesForFormats(IDataObject *pDataObj) con
|
|||||||
FORMATETC fmtetc;
|
FORMATETC fmtetc;
|
||||||
while (S_OK == fmtenum->Next(1, &fmtetc, 0)) {
|
while (S_OK == fmtenum->Next(1, &fmtetc, 0)) {
|
||||||
#if defined(QMIME_DEBUG)
|
#if defined(QMIME_DEBUG)
|
||||||
qDebug("QWindowsMime::allMimesForFormats()");
|
|
||||||
wchar_t buf[256] = {0};
|
wchar_t buf[256] = {0};
|
||||||
GetClipboardFormatName(fmtetc.cfFormat, buf, 255);
|
GetClipboardFormatName(fmtetc.cfFormat, buf, 255);
|
||||||
qDebug("CF = %d : %s", fmtetc.cfFormat, QString::fromWCharArray(buf));
|
qDebug("CF = %d : %s", fmtetc.cfFormat, qPrintable(QString::fromWCharArray(buf)));
|
||||||
#endif
|
#endif
|
||||||
for (int i= m_mimes.size() - 1; i >= 0; --i) {
|
for (int i= m_mimes.size() - 1; i >= 0; --i) {
|
||||||
QString format = m_mimes.at(i)->mimeForFormat(fmtetc);
|
QString format = m_mimes.at(i)->mimeForFormat(fmtetc);
|
||||||
@ -1478,7 +1478,7 @@ QStringList QWindowsMimeConverter::allMimesForFormats(IDataObject *pDataObj) con
|
|||||||
}
|
}
|
||||||
fmtenum->Release();
|
fmtenum->Release();
|
||||||
}
|
}
|
||||||
qCDebug(lcQpaMime) << __FUNCTION__ << pDataObj << formats;
|
qCDebug(lcQpaMime) << pDataObj << formats;
|
||||||
return formats;
|
return formats;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user