diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-12-04 16:29:37 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-12-04 16:30:09 +0100 |
commit | 3dd00bbe28b24396f67f91cd72a00059057be74d (patch) | |
tree | d3e30bb71d567c2ba564884939b9f08bc257fc32 /sfx2/source/view/lokcharthelper.cxx | |
parent | 88ffde02b427afd2fa0214efbdc5d57e90b9d20e (diff) |
sfx2 android: fix -Werror,-Wunused-parameter warnings
Change-Id: Ib48144f5463248e8ceb6c979d1e2148893efa2ba
Diffstat (limited to 'sfx2/source/view/lokcharthelper.cxx')
-rw-r--r-- | sfx2/source/view/lokcharthelper.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sfx2/source/view/lokcharthelper.cxx b/sfx2/source/view/lokcharthelper.cxx index c8d46b134ad4..17df4dac3817 100644 --- a/sfx2/source/view/lokcharthelper.cxx +++ b/sfx2/source/view/lokcharthelper.cxx @@ -263,6 +263,14 @@ void LokChartHelper::PaintAllChartsOnTile(VirtualDevice& rDevice, pViewShell = SfxViewShell::GetNext(*pViewShell); } rDevice.Pop(); +#else + (void)rDevice; + (void)nOutputWidth; + (void)nOutputHeight; + (void)nTilePosX; + (void)nTilePosY; + (void)nTileWidth; + (void)nTileHeight; #endif } |