summaryrefslogtreecommitdiff
path: root/filter/source/graphic/GraphicExportFilter.cxx
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2017-09-20 17:25:37 +0200
committerEike Rathke <erack@redhat.com>2017-09-20 17:27:12 +0200
commit8e7196a56bd8c8b7b82a712a916cda1de21177b6 (patch)
tree2443ca1c1406ae5e7c56de5db37415aadc6e4b63 /filter/source/graphic/GraphicExportFilter.cxx
parent917d0471d0fd001a0177f9ee7ea505ef438727dd (diff)
Get the comments right
Change-Id: I936b22af55b4dae3c9352f4e1238a6351a03cb3d Reviewed-on: https://gerrit.libreoffice.org/42553 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'filter/source/graphic/GraphicExportFilter.cxx')
-rw-r--r--filter/source/graphic/GraphicExportFilter.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/filter/source/graphic/GraphicExportFilter.cxx b/filter/source/graphic/GraphicExportFilter.cxx
index de9d68646e27..9df878abfe96 100644
--- a/filter/source/graphic/GraphicExportFilter.cxx
+++ b/filter/source/graphic/GraphicExportFilter.cxx
@@ -142,19 +142,19 @@ sal_Bool SAL_CALL GraphicExportFilter::filter( const Sequence<PropertyValue>& rD
sal_Int32 nLen = aFilterData.getLength();
aFilterData.realloc( nLen + nAdd);
if (!maCompression.hasValue())
- { // PNG,JPG
+ { // PNG
aFilterData[ nLen ].Name = "Compression";
aFilterData[ nLen ].Value <<= (sal_Int32) 9;
++nLen;
}
if (!maInterlaced.hasValue())
- { // PNG,JPG
+ { // PNG,GIF
aFilterData[ nLen ].Name = "Interlaced";
aFilterData[ nLen ].Value <<= (sal_Int32) 0;
++nLen;
}
if (!maTranslucent.hasValue())
- { // PNG
+ { // PNG,GIF
aFilterData[ nLen ].Name = "Translucent";
aFilterData[ nLen ].Value <<= (sal_Int32) 0;
++nLen;