summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-21 13:13:48 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-21 13:13:48 +0000
commit8b2e014a99978434b2d973993c93b583ee8a62c7 (patch)
treef561775cc946a9c9397f403cec8b19614f6c2f1c
parent00856ac90d4a230d6f219937f836ca0e9f3fe1e3 (diff)
-Werror=parentheses
Change-Id: Ibf897ccd5c89d8ba86b6d7838d43b9e23aac79ca
-rw-r--r--svx/source/dialog/_contdlg.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/svx/source/dialog/_contdlg.cxx b/svx/source/dialog/_contdlg.cxx
index c5c23530a6b4..5565606745e3 100644
--- a/svx/source/dialog/_contdlg.cxx
+++ b/svx/source/dialog/_contdlg.cxx
@@ -535,11 +535,13 @@ IMPL_LINK( SvxSuperContourDlg, Tbx1ClickHdl, ToolBox*, pTbx )
aStbStatus.Invalidate();
else if ( bGraphicLinked )
{
- MessageDialog aQBox( this,"QueryUnlinkGraphicsDialog","svx/ui/queryunlinkgraphicsdialog.ui");
+ MessageDialog aQBox(this, "QueryUnlinkGraphicsDialog",
+ "svx/ui/queryunlinkgraphicsdialog.ui");
- if ( aQBox.Execute() != RET_YES )
+ if (aQBox.Execute() != RET_YES)
{
- aTbx1.CheckItem( TBI_PIPETTE, bPipette = sal_False );
+ bPipette = false;
+ aTbx1.CheckItem(TBI_PIPETTE, bPipette);
aStbStatus.Invalidate();
}
}