diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2017-11-19 01:38:22 +0900 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-11-20 14:01:44 +0100 |
commit | 14f351529e5f6282b1017d28671930d6142f4ce5 (patch) | |
tree | 9425e90bb869f9ed05bcebd621059eeb198e4b87 /sd | |
parent | 13de75274b727428355eefd55176277a5f891c47 (diff) |
cosmetics: Drop duplicate semicolon
Change-Id: I96d2ffb903f9ed15070572552c9564b5089df12f
Reviewed-on: https://gerrit.libreoffice.org/44914
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/core/drawdoc2.cxx | 2 | ||||
-rw-r--r-- | sd/source/filter/eppt/eppt.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/framework/factories/BasicToolBarFactory.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/core/drawdoc2.cxx b/sd/source/core/drawdoc2.cxx index 4862d47e7dd9..652206824822 100644 --- a/sd/source/core/drawdoc2.cxx +++ b/sd/source/core/drawdoc2.cxx @@ -209,7 +209,7 @@ bool SdDrawDocument::IsPageNameUnique( const OUString& rPgName ) const pPage = const_cast<SdPage*>(static_cast<const SdPage*>(GetMasterPage(nPage))); if (pPage && pPage->GetName() == rPgName) - nCount++;; + nCount++; nPage++; } diff --git a/sd/source/filter/eppt/eppt.cxx b/sd/source/filter/eppt/eppt.cxx index cbedbab9a340..2b3f76a41ebf 100644 --- a/sd/source/filter/eppt/eppt.cxx +++ b/sd/source/filter/eppt/eppt.cxx @@ -750,7 +750,7 @@ bool PPTWriter::ImplCreateDocument() mpPptEscherEx->CloseContainer(); // EPP_SlideListWithText css::uno::Reference< css::presentation::XPresentationSupplier > - aXPresSupplier( mXModel, css::uno::UNO_QUERY ); ; + aXPresSupplier( mXModel, css::uno::UNO_QUERY ); if ( aXPresSupplier.is() ) { css::uno::Reference< css::presentation::XPresentation > aXPresentation( aXPresSupplier->getPresentation() ); diff --git a/sd/source/ui/framework/factories/BasicToolBarFactory.cxx b/sd/source/ui/framework/factories/BasicToolBarFactory.cxx index ac8596a5de82..deecde4be59d 100644 --- a/sd/source/ui/framework/factories/BasicToolBarFactory.cxx +++ b/sd/source/ui/framework/factories/BasicToolBarFactory.cxx @@ -127,7 +127,7 @@ Reference<XResource> SAL_CALL BasicToolBarFactory::createResource ( if (rxToolBarId->getResourceURL() != FrameworkHelper::msViewTabBarURL) throw lang::IllegalArgumentException(); - Reference<XResource> xToolBar = new ViewTabBar(rxToolBarId, mxController);; + Reference<XResource> xToolBar = new ViewTabBar(rxToolBarId, mxController); return xToolBar; } |