summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-10-24 12:26:03 +0300
committerTor Lillqvist <tml@collabora.com>2013-10-24 12:26:03 +0300
commit7cd77d5cb0b6fd3343f2703c73e2dc4b65fc0e9e (patch)
tree58743d3d146f4ebe9a4d7ee6a8f7b366f8e5bdb2
parentc7f83feb90b7bde9e3609795a749ca3bf2c0d02c (diff)
WaE: declaration shadows a field
Change-Id: I37a5edbc578a71cb7eba29c3191cfa36e90ca022
-rw-r--r--sw/qa/tiledrendering/tiledrendering.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/qa/tiledrendering/tiledrendering.cxx b/sw/qa/tiledrendering/tiledrendering.cxx
index 6af94eca6873..53921f0671b5 100644
--- a/sw/qa/tiledrendering/tiledrendering.cxx
+++ b/sw/qa/tiledrendering/tiledrendering.cxx
@@ -56,9 +56,9 @@ class TiledRenderingDialog: public ModalDialog{
private:
TiledRenderingApp * app;
public:
- TiledRenderingDialog(TiledRenderingApp * app) :
+ TiledRenderingDialog(TiledRenderingApp * app_) :
ModalDialog(DIALOG_NO_PARENT, "TiledRendering", "qa/sw/ui/tiledrendering.ui"),
- app(app)
+ app(app_)
{
PushButton * renderButton;
get(renderButton,"buttonRenderTile");