summaryrefslogtreecommitdiff
path: root/sw/source/ui
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-11-11 08:39:26 +0100
committerJulien Nabet <serval2412@yahoo.fr>2018-11-11 11:53:45 +0100
commitb9b7f98befb722e59bd84bc9975a4ec381616abc (patch)
tree5e7f74bd990a3aec06bdd50f77826f56ab195edc /sw/source/ui
parent8a5a56ebfef298241daf598d7c417aef466e3ec7 (diff)
Removed repeated semicolon
Change-Id: Iefc820a4c4bb87fe113f97b085d8e89f30ff2db5 Reviewed-on: https://gerrit.libreoffice.org/63261 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
Diffstat (limited to 'sw/source/ui')
-rw-r--r--sw/source/ui/vba/vbaapplication.cxx2
-rw-r--r--sw/source/ui/vba/vbadocument.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/vba/vbaapplication.cxx b/sw/source/ui/vba/vbaapplication.cxx
index eae06b29457a..8eacf19b6ae2 100644
--- a/sw/source/ui/vba/vbaapplication.cxx
+++ b/sw/source/ui/vba/vbaapplication.cxx
@@ -107,7 +107,7 @@ SwVbaApplication::AddSink( const uno::Reference< XSink >& xSink )
// No harm in potentially calling this several times
SW_MOD()->RegisterAutomationApplicationEventsCaller( uno::Reference< XSinkCaller >(this) );
mvSinks.push_back(xSink);
- return mvSinks.size();;
+ return mvSinks.size();
}
void
diff --git a/sw/source/ui/vba/vbadocument.cxx b/sw/source/ui/vba/vbadocument.cxx
index 851920b56005..557b5bb9ca1c 100644
--- a/sw/source/ui/vba/vbadocument.cxx
+++ b/sw/source/ui/vba/vbadocument.cxx
@@ -98,7 +98,7 @@ SwVbaDocument::AddSink( const uno::Reference< XSink >& xSink )
{
word::getDocShell( mxModel )->RegisterAutomationDocumentEventsCaller( uno::Reference< XSinkCaller >(this) );
mvSinks.push_back(xSink);
- return mvSinks.size();;
+ return mvSinks.size();
}
void