diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-05-07 20:25:33 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-05-07 20:25:33 +0200 |
commit | 1168d5a82e212c1a0a93faa72ebe7bf24fc20900 (patch) | |
tree | bdf7c29eb61b3a938c61b14ab10fe9383e73fd85 /sw | |
parent | 3ffed8635acd55a5989bf9a0f4bc9c20b0acd945 (diff) |
sw: fix -Werror=unused-parameter
Change-Id: I67223090a2a45e9519bd29e41e3e90eb847c5c19
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/uibase/uno/unotxdoc.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sw/source/uibase/uno/unotxdoc.cxx b/sw/source/uibase/uno/unotxdoc.cxx index 86689a0ecc08..6f1c5a824155 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 } |