diff options
author | Peter Senna Tschudin <peter.senna@gmail.com> | 2014-05-26 19:41:16 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2014-05-27 01:19:00 -0500 |
commit | 3b24dcc8a8138c1e1495c3dba5ffe5748cb183c2 (patch) | |
tree | 8250ea36b767d906cc6606ab81d198ffda2e8ee1 /cui/source/dialogs | |
parent | a1dedadbf0d87a1db24e9b336257678e059882f0 (diff) |
Remove unnecessary semicolons
A simplified version of the semantic match that finds this problem is
follows: (http://coccinelle.lip6.fr/)
// <smpl>
@r1@
statement S;
position p,p1;
@@
S@p1;@p
@script:python r2@
p << r1.p;
p1 << r1.p1;
@@
if p[0].line != p1[0].line_end:
cocci.include_match(False)
@@
position r1.p;
@@
-;@p
// </smpl>
Change-Id: Ib9708d37fbb4c6060f88d5dae3814a2d37b2091e
Reviewed-on: https://gerrit.libreoffice.org/9493
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'cui/source/dialogs')
-rw-r--r-- | cui/source/dialogs/iconcdlg.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cui/source/dialogs/iconcdlg.cxx b/cui/source/dialogs/iconcdlg.cxx index 388b4000bc4c..c0d4124b06f1 100644 --- a/cui/source/dialogs/iconcdlg.cxx +++ b/cui/source/dialogs/iconcdlg.cxx @@ -371,7 +371,7 @@ EIconChoicePos IconChoiceDialog::SetCtrlPos( const EIconChoicePos& rPos ) aWinBits &= ~WB_ALIGN_LEFT & ~WB_NOHSCROLL; aWinBits |= WB_ALIGN_TOP | WB_NOVSCROLL; break; - }; + } maIconCtrl.SetStyle ( aWinBits ); SetPosSizeCtrls(); @@ -487,7 +487,7 @@ void IconChoiceDialog::SetPosSizeCtrls ( bool bInit ) aNewIconCtrlSize = Size ( aOutSize.Width()-(2*aCtrlOffset.X()), nDefaultHeight ); break; - }; + } maIconCtrl.SetPosSizePixel ( aIconCtrlPos, aNewIconCtrlSize ); maIconCtrl.ArrangeIcons(); @@ -530,7 +530,7 @@ void IconChoiceDialog::SetPosSizeCtrls ( bool bInit ) aOutSize.Height() - aOKBtn.GetSizePixel().Height() - aNewIconCtrlSize.Height() - (4*aCtrlOffset.X()) ); break; - }; + } if ( pData->pPage ) pData->pPage->SetPosSizePixel ( aNewPagePos, aNewPageSize ); @@ -619,7 +619,7 @@ void IconChoiceDialog::SetPosSizePages ( sal_uInt16 nId ) aOutSize.Height() - aOKBtn.GetSizePixel().Height() - maIconCtrl.GetSizePixel().Height() - (4*aCtrlOffset.X()) ); break; - }; + } pData->pPage->SetPosSizePixel ( aNewPagePos, aNewPageSize ); } |