mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Compile fix for cygwin and shut up gcc warning about NULL
used for non-pointer type. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24145 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
753aa0451d
commit
40535cb302
@ -43,6 +43,9 @@
|
||||
|
||||
#ifdef Q_WS_WIN
|
||||
#include <QWindowsMime>
|
||||
#ifdef Q_CYGWIN_WIN
|
||||
#include <wtypes.h>
|
||||
#endif
|
||||
#include <objidl.h>
|
||||
#endif // Q_WS_WIN
|
||||
|
||||
@ -153,11 +156,11 @@ QVariant QWindowsMimeMetafile::convertToMime(
|
||||
|
||||
if (pDataObj->GetData(&formatetc, &s) == S_OK) {
|
||||
if (s.tymed == TYMED_ENHMF) {
|
||||
dataSize = GetEnhMetaFileBits(s.hEnhMetaFile, NULL, NULL);
|
||||
dataSize = GetEnhMetaFileBits(s.hEnhMetaFile, 0, 0);
|
||||
data.resize(dataSize);
|
||||
dataSize = GetEnhMetaFileBits(s.hEnhMetaFile, dataSize, (LPBYTE)data.data());
|
||||
} else if (s.tymed == TYMED_MFPICT) {
|
||||
dataSize = GetMetaFileBitsEx((HMETAFILE)s.hMetaFilePict, NULL, NULL);
|
||||
dataSize = GetMetaFileBitsEx((HMETAFILE)s.hMetaFilePict, 0, 0);
|
||||
data.resize(dataSize);
|
||||
dataSize = GetMetaFileBitsEx((HMETAFILE)s.hMetaFilePict, dataSize, (LPBYTE)data.data());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user