Kaydet (Commit) 1168d5a8 authored tarafından Miklos Vajna's avatar Miklos Vajna

sw: fix -Werror=unused-parameter

Change-Id: I67223090a2a45e9519bd29e41e3e90eb847c5c19
üst 3ffed863
...@@ -3294,6 +3294,12 @@ void SAL_CALL SwXTextDocument::paintTile( const ::css::uno::Any& Parent, ::sal_I ...@@ -3294,6 +3294,12 @@ void SAL_CALL SwXTextDocument::paintTile( const ::css::uno::Any& Parent, ::sal_I
paintTile( aDevice, nOutputWidth, nOutputHeight, nTilePosX, nTilePosY, nTileWidth, nTileHeight ); paintTile( aDevice, nOutputWidth, nOutputHeight, nTilePosX, nTilePosY, nTileWidth, nTileHeight );
#else #else
// TODO: support other platforms // TODO: support other platforms
(void)nOutputWidth;
(void)nOutputHeight;
(void)nTilePosX;
(void)nTilePosY;
(void)nTileWidth;
(void)nTileHeight;
#endif #endif
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment