summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2017-11-19 01:38:22 +0900
committerEike Rathke <erack@redhat.com>2017-11-20 14:01:44 +0100
commit14f351529e5f6282b1017d28671930d6142f4ce5 (patch)
tree9425e90bb869f9ed05bcebd621059eeb198e4b87 /sw
parent13de75274b727428355eefd55176277a5f891c47 (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 'sw')
-rw-r--r--sw/source/core/access/acccontext.cxx2
-rw-r--r--sw/source/core/unocore/unosett.cxx6
-rw-r--r--sw/source/uibase/uno/unotxdoc.cxx2
3 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/core/access/acccontext.cxx b/sw/source/core/access/acccontext.cxx
index 0a6414cf148b..46e0be9ce220 100644
--- a/sw/source/core/access/acccontext.cxx
+++ b/sw/source/core/access/acccontext.cxx
@@ -932,7 +932,7 @@ void SAL_CALL SwAccessibleContext::grabFocus()
{
SolarMutexGuard aGuard;
- ThrowIfDisposed();;
+ ThrowIfDisposed();
if( GetFrame()->IsFlyFrame() )
{
diff --git a/sw/source/core/unocore/unosett.cxx b/sw/source/core/unocore/unosett.cxx
index 03b982f7d615..f7376b93693f 100644
--- a/sw/source/core/unocore/unosett.cxx
+++ b/sw/source/core/unocore/unosett.cxx
@@ -839,13 +839,13 @@ void SwXLineNumberingProperties::setPropertyValue(
switch(nTmp)
{
case style::LineNumberPosition::LEFT:
- aFontMetric.SetPos(LINENUMBER_POS_LEFT); ;
+ aFontMetric.SetPos(LINENUMBER_POS_LEFT);
break;
case style::LineNumberPosition::RIGHT :
- aFontMetric.SetPos(LINENUMBER_POS_RIGHT); ;
+ aFontMetric.SetPos(LINENUMBER_POS_RIGHT);
break;
case style::LineNumberPosition::INSIDE:
- aFontMetric.SetPos(LINENUMBER_POS_INSIDE); ;
+ aFontMetric.SetPos(LINENUMBER_POS_INSIDE);
break;
case style::LineNumberPosition::OUTSIDE:
aFontMetric.SetPos(LINENUMBER_POS_OUTSIDE);
diff --git a/sw/source/uibase/uno/unotxdoc.cxx b/sw/source/uibase/uno/unotxdoc.cxx
index 6187022a9ed3..1d4a9c6196f7 100644
--- a/sw/source/uibase/uno/unotxdoc.cxx
+++ b/sw/source/uibase/uno/unotxdoc.cxx
@@ -4453,7 +4453,7 @@ void SwXOutlineTarget::setPropertyValue(
Any SwXOutlineTarget::getPropertyValue(const OUString& rPropertyName)
{
if(rPropertyName != UNO_LINK_DISPLAY_NAME)
- throw UnknownPropertyException();;
+ throw UnknownPropertyException();
return Any(sOutlineText);
}