[Libreoffice-commits] core.git: filter/source include/sal

Stephan Bergmann sbergman at redhat.com
Mon Jun 13 06:52:25 UTC 2016


 filter/source/flash/swfwriter1.cxx |    4 ++--
 filter/source/msfilter/svdfppt.cxx |    2 +-
 include/sal/log-areas.dox          |    1 +
 3 files changed, 4 insertions(+), 3 deletions(-)

New commits:
commit e2574399f7b78bc05eaf11dad41f7c1e5215dc1d
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Mon Jun 13 08:51:57 2016 +0200

    loplugin:sallogareas
    
    Change-Id: Ib28e76ed6947431c6466d11aaadca8d95abfc275

diff --git a/filter/source/flash/swfwriter1.cxx b/filter/source/flash/swfwriter1.cxx
index 2097bcb..4bc5557 100644
--- a/filter/source/flash/swfwriter1.cxx
+++ b/filter/source/flash/swfwriter1.cxx
@@ -794,7 +794,7 @@ sal_uInt16 Writer::defineBitmap( const BitmapEx &bmpSource, sal_Int32 nJPEGQuali
 #ifdef DBG_UTIL
     if(compress2(pCompressed.get(), &compressed_size, pImageData, raw_size, Z_BEST_COMPRESSION) != Z_OK)
     {
-        SAL_WARN( "filter", "compress2 failed!" ); ((void)0);
+        SAL_WARN( "filter.flash", "compress2 failed!" ); ((void)0);
     }
 #else
     compress2(pCompressed.get(), &compressed_size, pImageData, raw_size, Z_BEST_COMPRESSION);
@@ -812,7 +812,7 @@ sal_uInt16 Writer::defineBitmap( const BitmapEx &bmpSource, sal_Int32 nJPEGQuali
 #ifdef DBG_UTIL
         if(compress2(pAlphaCompressed.get(), &alpha_compressed_size, pAlphaData, width * height, Z_BEST_COMPRESSION) != Z_OK)
         {
-            SAL_WARN( "filter", "compress2 failed!" ); ((void)0);
+            SAL_WARN( "filter.flash", "compress2 failed!" ); ((void)0);
         }
 #else
         compress2(pAlphaCompressed.get(), &alpha_compressed_size, pAlphaData, width * height, Z_BEST_COMPRESSION);
diff --git a/filter/source/msfilter/svdfppt.cxx b/filter/source/msfilter/svdfppt.cxx
index 2cb1cc5..8306244 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.cxx
@@ -4221,7 +4221,7 @@ PPTStyleSheet::PPTStyleSheet( const DffRecordHeader& rSlideHd, SvStream& rIn, Sd
                     }
                 }
                 if ( rIn.Tell() != aTxMasterStyleHd.GetRecEndFilePos() )
-                    SAL_WARN( "filter", "SJ: Falsche Anzahl von Bytes gelesen beim Import der PPT-Formatvorlagen");
+                    SAL_WARN( "filter.ms", "SJ: Falsche Anzahl von Bytes gelesen beim Import der PPT-Formatvorlagen");
             }
 #endif
         }
diff --git a/include/sal/log-areas.dox b/include/sal/log-areas.dox
index 06da4f8..2de5d4f 100644
--- a/include/sal/log-areas.dox
+++ b/include/sal/log-areas.dox
@@ -198,6 +198,7 @@ certain functionality.
 @section Filter
 
 @li @c filter.config
+ at li @c filter.flash
 @li @c filter.ms - escher import/export
 @li @c filter.odfflatxml
 @li @c filter.os2met


More information about the Libreoffice-commits mailing list