[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - vcl/source
Jan Holesovsky (via logerrit)
logerrit at kemper.freedesktop.org
Fri Mar 13 07:09:01 UTC 2020
vcl/source/filter/graphicfilter.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 7235e423751ad81c39c8bc02374a4dfed44469e0
Author: Jan Holesovsky <kendy at collabora.com>
AuthorDate: Thu Mar 12 15:03:01 2020 +0100
Commit: Jan Holesovsky <kendy at collabora.com>
CommitDate: Fri Mar 13 08:08:31 2020 +0100
android: Fix 32bit build.
Change-Id: Ife6740860cd7e1844b1ff0166694652538048a44
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90407
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice at gmail.com>
Reviewed-by: Yunusemre Şentürk <yunusemre at collabora.com>
Reviewed-by: Jan Holesovsky <kendy at collabora.com>
diff --git a/vcl/source/filter/graphicfilter.cxx b/vcl/source/filter/graphicfilter.cxx
index a8c6719f3123..4bb26182a918 100644
--- a/vcl/source/filter/graphicfilter.cxx
+++ b/vcl/source/filter/graphicfilter.cxx
@@ -2545,7 +2545,7 @@ IMPL_LINK( GraphicFilter, FilterCallback, ConvertData&, rData, bool )
aFilterData.realloc(aFilterData.getLength() + 1);
aFilterData[aFilterData.getLength() - 1].Name = "Compression";
// We "know" that this gets passed to zlib's deflateInit2_(). 1 means best speed.
- aFilterData[aFilterData.getLength() - 1].Value <<= 1;
+ aFilterData[aFilterData.getLength() - 1].Value <<= static_cast<sal_Int32>(1);
}
#endif
nFormat = GetExportFormatNumberForShortName( OStringToOUString(aShortName, RTL_TEXTENCODING_UTF8) );
More information about the Libreoffice-commits
mailing list