summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--desktop/source/app/sofficemain.cxx4
-rw-r--r--oox/source/drawingml/shape.cxx2
-rw-r--r--package/source/zippackage/ZipPackageStream.cxx2
-rw-r--r--sc/source/filter/xml/xmlcelli.cxx2
-rw-r--r--sc/source/filter/xml/xmlconti.cxx2
-rw-r--r--sc/source/ui/view/cellsh4.cxx4
-rw-r--r--sd/source/ui/func/fuconstr.cxx2
-rw-r--r--sd/source/ui/view/drviews9.cxx2
-rw-r--r--sw/source/ui/dbui/mmresultdialogs.cxx4
-rw-r--r--vcl/source/uitest/uiobject.cxx2
-rw-r--r--xmlsecurity/source/pdfio/pdfverify.cxx2
11 files changed, 14 insertions, 14 deletions
diff --git a/desktop/source/app/sofficemain.cxx b/desktop/source/app/sofficemain.cxx
index 755da5920e09..b0d155b54c65 100644
--- a/desktop/source/app/sofficemain.cxx
+++ b/desktop/source/app/sofficemain.cxx
@@ -81,7 +81,7 @@ static bool dumpCallback(const google_breakpad::MinidumpDescriptor& descriptor,
{
std::string ini_path = CrashReporter::getIniFileName();
std::ofstream minidump_file(ini_path, std::ios_base::app);
- minidump_file << "DumpFile=" << descriptor.path() << "\n";;
+ minidump_file << "DumpFile=" << descriptor.path() << "\n";
minidump_file.close();
SAL_WARN("desktop", "minidump generated: " << descriptor.path());
return succeeded;
@@ -97,7 +97,7 @@ static bool dumpCallback(const wchar_t* path, const wchar_t* id,
// TODO: moggi: can we avoid this conversion
std::wstring_convert<std::codecvt_utf8<wchar_t>> conv1;
std::string aPath = conv1.to_bytes(std::wstring(path)) + conv1.to_bytes(std::wstring(id)) + ".dmp";
- minidump_file << "DumpFile=" << aPath << "\n";;
+ minidump_file << "DumpFile=" << aPath << "\n";
minidump_file.close();
SAL_WARN("desktop", "minidump generated: " << aPath);
return succeeded;
diff --git a/oox/source/drawingml/shape.cxx b/oox/source/drawingml/shape.cxx
index 159dc6449708..f027cd159524 100644
--- a/oox/source/drawingml/shape.cxx
+++ b/oox/source/drawingml/shape.cxx
@@ -1136,7 +1136,7 @@ Reference< XShape > const & Shape::createAndInsert(
if ( pFontRef->maPhClr.isUsed() )
{
aCharStyleProperties.maFillProperties.maFillColor = pFontRef->maPhClr;
- aCharStyleProperties.maFillProperties.moFillType.set(XML_solidFill);;
+ aCharStyleProperties.maFillProperties.moFillType.set(XML_solidFill);
}
}
}
diff --git a/package/source/zippackage/ZipPackageStream.cxx b/package/source/zippackage/ZipPackageStream.cxx
index 932a5af4dab6..2222f7b1f166 100644
--- a/package/source/zippackage/ZipPackageStream.cxx
+++ b/package/source/zippackage/ZipPackageStream.cxx
@@ -177,7 +177,7 @@ uno::Reference< io::XInputStream > ZipPackageStream::GetRawEncrStreamNoHeaderCop
// create temporary stream
uno::Reference < io::XTempFile > xTempFile = io::TempFile::create(m_xContext);
uno::Reference < io::XOutputStream > xTempOut = xTempFile->getOutputStream();
- uno::Reference < io::XInputStream > xTempIn = xTempFile->getInputStream();;
+ uno::Reference < io::XInputStream > xTempIn = xTempFile->getInputStream();
uno::Reference < io::XSeekable > xTempSeek( xTempOut, UNO_QUERY_THROW );
// copy the raw stream to the temporary file starting from the current position
diff --git a/sc/source/filter/xml/xmlcelli.cxx b/sc/source/filter/xml/xmlcelli.cxx
index 42780fdfac98..abc69871804e 100644
--- a/sc/source/filter/xml/xmlcelli.cxx
+++ b/sc/source/filter/xml/xmlcelli.cxx
@@ -1145,7 +1145,7 @@ void ScXMLTableRowCellContext::PutValueCell( const ScAddress& rCurrentPos )
ScRefCellValue aCell(*rXMLImport.GetDocument(), rCurrentPos);
if (aCell.meType == CELLTYPE_FORMULA)
{
- ScFormulaCell* pFCell = aCell.mpFormula;;
+ ScFormulaCell* pFCell = aCell.mpFormula;
SetFormulaCell(pFCell);
if (pFCell)
pFCell->SetNeedNumberFormat( true );
diff --git a/sc/source/filter/xml/xmlconti.cxx b/sc/source/filter/xml/xmlconti.cxx
index 9ae456e9a870..1fa59c66ffb1 100644
--- a/sc/source/filter/xml/xmlconti.cxx
+++ b/sc/source/filter/xml/xmlconti.cxx
@@ -69,7 +69,7 @@ SvXMLImportContext *ScXMLContentContext::CreateChildContext( sal_uInt16 nPrefix,
sOUText.append(' ');
}
- return new SvXMLImportContext( GetImport(), nPrefix, rLName );;
+ return new SvXMLImportContext( GetImport(), nPrefix, rLName );
}
void ScXMLContentContext::Characters( const OUString& rChars )
diff --git a/sc/source/ui/view/cellsh4.cxx b/sc/source/ui/view/cellsh4.cxx
index 5932a7dba441..51ff1a6abcb6 100644
--- a/sc/source/ui/view/cellsh4.cxx
+++ b/sc/source/ui/view/cellsh4.cxx
@@ -374,7 +374,7 @@ void ScCellShell::ExecuteMove( SfxRequest& rReq )
if ( pReqArgs && pReqArgs->HasItem( FN_PARAM_1, &pColItem ) &&
pReqArgs->HasItem( FN_PARAM_2, &pModifierItem ) )
{
- SCCOL nCol = static_cast<SCCOL>(static_cast<const SfxInt32Item*>(pColItem)->GetValue());;
+ SCCOL nCol = static_cast<SCCOL>(static_cast<const SfxInt32Item*>(pColItem)->GetValue());
sal_Int16 nModifier = static_cast<sal_Int16>(static_cast<const SfxInt16Item*>(pModifierItem)->GetValue());
pTabViewShell->MarkColumns( nCol, nModifier );
@@ -391,7 +391,7 @@ void ScCellShell::ExecuteMove( SfxRequest& rReq )
if ( pReqArgs && pReqArgs->HasItem( FN_PARAM_1, &pRowItem ) &&
pReqArgs->HasItem( FN_PARAM_2, &pModifierItem ) )
{
- SCROW nRow = static_cast<SCROW>(static_cast<const SfxInt32Item*>(pRowItem)->GetValue());;
+ SCROW nRow = static_cast<SCROW>(static_cast<const SfxInt32Item*>(pRowItem)->GetValue());
sal_Int16 nModifier = static_cast<sal_Int16>(static_cast<const SfxInt16Item*>(pModifierItem)->GetValue());
pTabViewShell->MarkRows( nRow, nModifier );
diff --git a/sd/source/ui/func/fuconstr.cxx b/sd/source/ui/func/fuconstr.cxx
index 77ffeb147903..2937fd2eadd5 100644
--- a/sd/source/ui/func/fuconstr.cxx
+++ b/sd/source/ui/func/fuconstr.cxx
@@ -218,7 +218,7 @@ bool FuConstruct::MouseButtonUp(const MouseEvent& rMEvt)
*/
bool FuConstruct::KeyInput(const KeyEvent& rKEvt)
{
- return FuDraw::KeyInput(rKEvt);;
+ return FuDraw::KeyInput(rKEvt);
}
void FuConstruct::Activate()
diff --git a/sd/source/ui/view/drviews9.cxx b/sd/source/ui/view/drviews9.cxx
index 25899a943c03..fdea39d5bf36 100644
--- a/sd/source/ui/view/drviews9.cxx
+++ b/sd/source/ui/view/drviews9.cxx
@@ -585,7 +585,7 @@ void DrawViewShell::AttrExec (SfxRequest &rReq)
pAttr->Put(aStyleItem);
XFillGradientItem aGradientItem(pName->GetValue (), aGradient);
aGradientItem.SetWhich(XATTR_FILLGRADIENT);
- pAttr->Put(aGradientItem);;
+ pAttr->Put(aGradientItem);
}
rBindings.Invalidate (SID_ATTR_FILL_GRADIENT);
diff --git a/sw/source/ui/dbui/mmresultdialogs.cxx b/sw/source/ui/dbui/mmresultdialogs.cxx
index ec0b71b06a36..509f6bb329a7 100644
--- a/sw/source/ui/dbui/mmresultdialogs.cxx
+++ b/sw/source/ui/dbui/mmresultdialogs.cxx
@@ -239,7 +239,7 @@ SwMMResultSaveDialog::SwMMResultSaveDialog()
SwView* pView = ::GetActiveView();
std::shared_ptr<SwMailMergeConfigItem> xConfigItem = pView->GetMailMergeConfigItem();
assert(xConfigItem);
- sal_Int32 nCount = xConfigItem->GetMergedDocumentCount();;
+ sal_Int32 nCount = xConfigItem->GetMergedDocumentCount();
m_pToNF->SetMax(nCount);
m_pToNF->SetValue(nCount);
@@ -407,7 +407,7 @@ void SwMMResultPrintDialog::FillInPrinterSettings()
m_pPrinterLB->SelectEntry(xConfigItem->GetSelectedPrinter());
}
- sal_Int32 count = xConfigItem->GetMergedDocumentCount();;
+ sal_Int32 count = xConfigItem->GetMergedDocumentCount();
m_pToNF->SetValue(count);
m_pToNF->SetMax(count);
diff --git a/vcl/source/uitest/uiobject.cxx b/vcl/source/uitest/uiobject.cxx
index c1fc7c5f81ce..4fc2e851bfed 100644
--- a/vcl/source/uitest/uiobject.cxx
+++ b/vcl/source/uitest/uiobject.cxx
@@ -543,7 +543,7 @@ EditUIObject::~EditUIObject()
void EditUIObject::execute(const OUString& rAction,
const StringMap& rParameters)
{
- bool bHandled = true;;
+ bool bHandled = true;
if (rAction == "SET")
{
if (rParameters.find("TEXT") != rParameters.end())
diff --git a/xmlsecurity/source/pdfio/pdfverify.cxx b/xmlsecurity/source/pdfio/pdfverify.cxx
index 8e4ba4212900..b288067c080d 100644
--- a/xmlsecurity/source/pdfio/pdfverify.cxx
+++ b/xmlsecurity/source/pdfio/pdfverify.cxx
@@ -42,7 +42,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(nArgc, pArgv)
return 1;
}
uno::Reference<lang::XMultiComponentFactory> xMultiComponentFactory = xComponentContext->getServiceManager();
- uno::Reference<lang::XMultiServiceFactory> xMultiServiceFactory(xMultiComponentFactory, uno::UNO_QUERY);;
+ uno::Reference<lang::XMultiServiceFactory> xMultiServiceFactory(xMultiComponentFactory, uno::UNO_QUERY);
comphelper::setProcessServiceFactory(xMultiServiceFactory);
uno::Reference<xml::crypto::XSEInitializer> xSEInitializer;
try