Fixed build error in gcc 3.3.
This commit is contained in:
parent
b876f8b98e
commit
df4807950a
|
@ -105,7 +105,7 @@ CXWindowsClipboardBMPConverter::fromIClipboard(const CString& bmp) const
|
||||||
UInt8* dst = header;
|
UInt8* dst = header;
|
||||||
toLE(dst, 'B');
|
toLE(dst, 'B');
|
||||||
toLE(dst, 'M');
|
toLE(dst, 'M');
|
||||||
toLE(dst, 14 + bmp.size());
|
toLE(dst, static_cast<UInt32>(14 + bmp.size()));
|
||||||
toLE(dst, static_cast<UInt16>(0));
|
toLE(dst, static_cast<UInt16>(0));
|
||||||
toLE(dst, static_cast<UInt16>(0));
|
toLE(dst, static_cast<UInt16>(0));
|
||||||
toLE(dst, static_cast<UInt32>(14 + 40));
|
toLE(dst, static_cast<UInt32>(14 + 40));
|
||||||
|
|
Loading…
Reference in New Issue