Fixed build error in gcc 3.3.

This commit is contained in:
crs 2004-05-12 18:54:03 +00:00
parent b876f8b98e
commit df4807950a
1 changed files with 1 additions and 1 deletions

View File

@ -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));