[Libreoffice-commits] core.git: sw/source

Miklos Vajna vmiklos at collabora.co.uk
Thu May 7 11:26:12 PDT 2015


 sw/source/uibase/uno/unotxdoc.cxx |    6 ++++++
 1 file changed, 6 insertions(+)

New commits:
commit 1168d5a82e212c1a0a93faa72ebe7bf24fc20900
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date:   Thu May 7 20:25:33 2015 +0200

    sw: fix -Werror=unused-parameter
    
    Change-Id: I67223090a2a45e9519bd29e41e3e90eb847c5c19

diff --git a/sw/source/uibase/uno/unotxdoc.cxx b/sw/source/uibase/uno/unotxdoc.cxx
index 86689a0..6f1c5a8 100644
--- a/sw/source/uibase/uno/unotxdoc.cxx
+++ b/sw/source/uibase/uno/unotxdoc.cxx
@@ -3294,6 +3294,12 @@ void SAL_CALL SwXTextDocument::paintTile( const ::css::uno::Any& Parent, ::sal_I
     paintTile( aDevice, nOutputWidth, nOutputHeight, nTilePosX, nTilePosY, nTileWidth, nTileHeight );
     #else
     // TODO: support other platforms
+    (void)nOutputWidth;
+    (void)nOutputHeight;
+    (void)nTilePosX;
+    (void)nTilePosY;
+    (void)nTileWidth;
+    (void)nTileHeight;
     #endif
 }
 


More information about the Libreoffice-commits mailing list