This is an automated email from the ASF dual-hosted git repository.
mseidel pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/trunk by this push:
new a22fd41b3c Remove second semicolon (work in progress)
a22fd41b3c is described below
commit a22fd41b3c7115abe997cce40bcadff026a78ca4
Author: mseidel <[email protected]>
AuthorDate: Fri Apr 18 00:11:18 2025 +0200
Remove second semicolon (work in progress)
---
main/chart2/source/controller/main/ObjectHierarchy.cxx | 2 +-
main/chart2/source/controller/main/SelectionHelper.cxx | 2 +-
main/chart2/source/view/main/LabelPositionHelper.cxx | 2 +-
main/codemaker/source/codemaker/exceptiontree.cxx | 2 +-
main/connectivity/source/commontools/dbtools2.cxx | 2 +-
main/connectivity/source/drivers/hsqldb/HDriver.cxx | 2 +-
main/dbaccess/source/ui/tabledesign/FieldDescriptions.cxx | 2 +-
main/extensions/source/bibliography/general.cxx | 2 +-
main/filter/source/msfilter/msdffimp.cxx | 2 +-
main/fpicker/source/office/OfficeControlAccess.cxx | 2 +-
main/sc/source/ui/vba/vbachart.cxx | 2 +-
main/sc/source/ui/view/viewfun4.cxx | 2 +-
main/scripting/source/basprov/basprov.cxx | 2 +-
main/sfx2/source/statbar/stbitem.cxx | 2 +-
main/svx/source/gallery2/galctrl.cxx | 2 +-
main/sw/qa/core/Test-BigPtrArray.cxx | 2 +-
main/sw/source/filter/basflt/shellio.cxx | 2 +-
main/sw/source/filter/ww8/ww8atr.cxx | 2 +-
main/sw/source/ui/uiview/srcview.cxx | 4 ++--
main/tools/source/fsys/os2.cxx | 2 +-
main/tools/source/generic/poly2.cxx | 2 +-
main/vcl/source/gdi/pdfwriter_impl.cxx | 2 +-
22 files changed, 23 insertions(+), 23 deletions(-)
diff --git a/main/chart2/source/controller/main/ObjectHierarchy.cxx
b/main/chart2/source/controller/main/ObjectHierarchy.cxx
index 0b00bc4637..ad367586a7 100644
--- a/main/chart2/source/controller/main/ObjectHierarchy.cxx
+++ b/main/chart2/source/controller/main/ObjectHierarchy.cxx
@@ -355,7 +355,7 @@ void ImplObjectHierarchy::createAxesTree(
ObjectIdentifier( ObjectIdentifier(
ObjectIdentifier::createClassifiedIdentifierForGrid( xAxis, xChartModel ) ) ) );
}
- Sequence< Reference< beans::XPropertySet > > aSubGrids(
xAxis->getSubGridProperties() );;
+ Sequence< Reference< beans::XPropertySet > > aSubGrids(
xAxis->getSubGridProperties() );
sal_Int32 nSubGrid = 0;
for( nSubGrid = 0; nSubGrid < aSubGrids.getLength(); ++nSubGrid )
{
diff --git a/main/chart2/source/controller/main/SelectionHelper.cxx
b/main/chart2/source/controller/main/SelectionHelper.cxx
index c9730d8861..21fa46a9e5 100644
--- a/main/chart2/source/controller/main/SelectionHelper.cxx
+++ b/main/chart2/source/controller/main/SelectionHelper.cxx
@@ -362,7 +362,7 @@ bool SelectionHelper::findNamedParent( SdrObject*&
pInOutObject
{
SdrObjList* pObjList = pObj->GetObjList();
if( !pObjList )
- return false;;
+ return false;
SdrObject* pOwner = pObjList->GetOwnerObj();
if( !pOwner )
return false;
diff --git a/main/chart2/source/view/main/LabelPositionHelper.cxx
b/main/chart2/source/view/main/LabelPositionHelper.cxx
index 25c7c96456..4f53134c9d 100644
--- a/main/chart2/source/view/main/LabelPositionHelper.cxx
+++ b/main/chart2/source/view/main/LabelPositionHelper.cxx
@@ -343,7 +343,7 @@ void lcl_correctRotation_Left_Bottom( double&
rfXCorrection, double& rfYCorrecti
{
double beta = fAnglePi-F_PI/2.0;
rfXCorrection = -aSize.Width*rtl::math::sin( beta )
- -aSize.Height*rtl::math::cos( beta );;
+ -aSize.Height*rtl::math::cos( beta );
rfYCorrection = aSize.Height*rtl::math::sin( beta );
}
else if( fAnglePositiveDegree<= 270.0 )
diff --git a/main/codemaker/source/codemaker/exceptiontree.cxx
b/main/codemaker/source/codemaker/exceptiontree.cxx
index 9ba59d4367..9919dd4961 100644
--- a/main/codemaker/source/codemaker/exceptiontree.cxx
+++ b/main/codemaker/source/codemaker/exceptiontree.cxx
@@ -85,7 +85,7 @@ void ExceptionTree::add(rtl::OString const & name,
TypeManager const & manager)
break;
}
for (ExceptionTreeNode::Children::iterator j(
- node->children.begin());
+ node->children.begin());;
++j)
{
if (j == node->children.end()) {
diff --git a/main/connectivity/source/commontools/dbtools2.cxx
b/main/connectivity/source/commontools/dbtools2.cxx
index 0d3bedb0dd..91b54dd4c2 100644
--- a/main/connectivity/source/commontools/dbtools2.cxx
+++ b/main/connectivity/source/commontools/dbtools2.cxx
@@ -493,7 +493,7 @@ namespace
Reference< XModel> lcl_getXModel(const Reference< XInterface>& _xIface)
{
Reference< XInterface > xParent = _xIface;
- Reference< XModel > xModel(xParent,UNO_QUERY);;
+ Reference< XModel > xModel(xParent,UNO_QUERY);
while( xParent.is() && !xModel.is() )
{
Reference<XChild> xChild(xParent,UNO_QUERY);
diff --git a/main/connectivity/source/drivers/hsqldb/HDriver.cxx
b/main/connectivity/source/drivers/hsqldb/HDriver.cxx
index 9ba90922a3..583d2ea9d3 100644
--- a/main/connectivity/source/drivers/hsqldb/HDriver.cxx
+++ b/main/connectivity/source/drivers/hsqldb/HDriver.cxx
@@ -167,7 +167,7 @@ namespace connectivity
aPermittedMethods.append( sPermittedMethod );
}
- return aPermittedMethods.makeStringAndClear();;
+ return aPermittedMethods.makeStringAndClear();
}
}
diff --git a/main/dbaccess/source/ui/tabledesign/FieldDescriptions.cxx
b/main/dbaccess/source/ui/tabledesign/FieldDescriptions.cxx
index 6db77da76a..26cc7be691 100644
--- a/main/dbaccess/source/ui/tabledesign/FieldDescriptions.cxx
+++ b/main/dbaccess/source/ui/tabledesign/FieldDescriptions.cxx
@@ -139,7 +139,7 @@ OFieldDescription::OFieldDescription(const Reference<
XPropertySet >& xAffectedC
if ( _bUseAsDest )
{
m_xDest = xAffectedCol;
- m_xDestInfo = xAffectedCol->getPropertySetInfo();;
+ m_xDestInfo = xAffectedCol->getPropertySetInfo();
}
else
{
diff --git a/main/extensions/source/bibliography/general.cxx
b/main/extensions/source/bibliography/general.cxx
index 848ea688c2..74d1950e67 100644
--- a/main/extensions/source/bibliography/general.cxx
+++ b/main/extensions/source/bibliography/general.cxx
@@ -735,7 +735,7 @@ IMPL_LINK(BibGeneralPage, ScrollHdl, ScrollBar*, pScroll)
nCurrentOffset = aFixedTexts[0]->GetPosPixel().Y() -
aBasePos.Y();
else
nCurrentOffset = aFixedTexts[0]->GetPosPixel().X() -
aBasePos.X();
- nOffset = pScroll->IsVisible() ? pScroll->GetThumbPos() +
nCurrentOffset : nCurrentOffset;;
+ nOffset = pScroll->IsVisible() ? pScroll->GetThumbPos() +
nCurrentOffset : nCurrentOffset;
for(sal_uInt16 i = 0; i < FIELD_COUNT; i++)
{
diff --git a/main/filter/source/msfilter/msdffimp.cxx
b/main/filter/source/msfilter/msdffimp.cxx
index 1a15e32b57..92769e37d2 100644
--- a/main/filter/source/msfilter/msdffimp.cxx
+++ b/main/filter/source/msfilter/msdffimp.cxx
@@ -800,7 +800,7 @@ static basegfx::B2DPolygon GetLineArrow( const sal_Int32
nLineWidth, const MSO_L
// 70 100mm = 2pt = 40 twip. In MS, line width less than 2pt has the
same size arrow as 2pt
// If the unit is twip. Make all use this unit especially the critical
value 70/40.
sal_Int32 nLineWidthCritical = bScaleArrow ? 40 : 70;
- double fLineWidth = nLineWidth < nLineWidthCritical ?
nLineWidthCritical : nLineWidth;;
+ double fLineWidth = nLineWidth < nLineWidthCritical ?
nLineWidthCritical : nLineWidth;
double fLenghtMul, fWidthMul;
sal_Int32 nLineNumber;
switch( eLineLenght )
diff --git a/main/fpicker/source/office/OfficeControlAccess.cxx
b/main/fpicker/source/office/OfficeControlAccess.cxx
index f9d23434e1..9863582270 100644
--- a/main/fpicker/source/office/OfficeControlAccess.cxx
+++ b/main/fpicker/source/office/OfficeControlAccess.cxx
@@ -437,7 +437,7 @@ namespace svt
case LISTBOX_FILTER:
if (
ControlActions::GET_SELECTED_ITEM == _nControlAction )
{
- aRet <<=
::rtl::OUString( m_pFilePickerController->getCurFilter() );;
+ aRet <<=
::rtl::OUString( m_pFilePickerController->getCurFilter() );
}
else
{
diff --git a/main/sc/source/ui/vba/vbachart.cxx
b/main/sc/source/ui/vba/vbachart.cxx
index a3f00a4f6e..66e3c9f4b6 100644
--- a/main/sc/source/ui/vba/vbachart.cxx
+++ b/main/sc/source/ui/vba/vbachart.cxx
@@ -587,7 +587,7 @@ ScVbaChart::setSourceData( const css::uno::Reference<
::ooo::vba::excel::XRange
ScDocument* pDoc = pRange->getScDocument();
if ( pDoc )
{
- bsetRowHeaders = pDoc->HasRowHeader(
static_cast< SCCOL >( mSingleRangeAddress.StartColumn ), static_cast< SCROW >(
mSingleRangeAddress.StartRow ), static_cast< SCCOL >(
mSingleRangeAddress.EndColumn ), static_cast< SCROW >(
mSingleRangeAddress.EndRow ), static_cast< SCTAB >( mSingleRangeAddress.Sheet )
);;
+ bsetRowHeaders = pDoc->HasRowHeader(
static_cast< SCCOL >( mSingleRangeAddress.StartColumn ), static_cast< SCROW >(
mSingleRangeAddress.StartRow ), static_cast< SCCOL >(
mSingleRangeAddress.EndColumn ), static_cast< SCROW >(
mSingleRangeAddress.EndRow ), static_cast< SCTAB >( mSingleRangeAddress.Sheet )
);
bsetColumnHeaders = pDoc->HasColHeader(
static_cast< SCCOL >( mSingleRangeAddress.StartColumn ), static_cast< SCROW >(
mSingleRangeAddress.StartRow ), static_cast< SCCOL >(
mSingleRangeAddress.EndColumn ), static_cast< SCROW >(
mSingleRangeAddress.EndRow ), static_cast< SCTAB >( mSingleRangeAddress.Sheet
));
;
}
diff --git a/main/sc/source/ui/view/viewfun4.cxx
b/main/sc/source/ui/view/viewfun4.cxx
index cc045cd50d..f2fc09b4a5 100644
--- a/main/sc/source/ui/view/viewfun4.cxx
+++ b/main/sc/source/ui/view/viewfun4.cxx
@@ -399,7 +399,7 @@ void ScViewFunc::DoThesaurus( sal_Bool bRecord )
{
DBG_ERROR("DoThesaurus: Keine String oder Editzelle");
}
- pEditView = GetViewData()->GetEditView(GetViewData()->GetActivePart());;
+ pEditView = GetViewData()->GetEditView(GetViewData()->GetActivePart());
if (pEditSel)
pEditView->SetSelection(*pEditSel);
else
diff --git a/main/scripting/source/basprov/basprov.cxx
b/main/scripting/source/basprov/basprov.cxx
index eec7d54486..59fd93e256 100644
--- a/main/scripting/source/basprov/basprov.cxx
+++ b/main/scripting/source/basprov/basprov.cxx
@@ -250,7 +250,7 @@ namespace basprov
Reference< frame::XModel > xModel;
- m_xInvocationContext.set( aArguments[0], UNO_QUERY );;
+ m_xInvocationContext.set( aArguments[0], UNO_QUERY );
if ( m_xInvocationContext.is() )
{
xModel.set( m_xInvocationContext->getScriptContainer(), UNO_QUERY
);
diff --git a/main/sfx2/source/statbar/stbitem.cxx
b/main/sfx2/source/statbar/stbitem.cxx
index 617d87d53a..e4522916f9 100644
--- a/main/sfx2/source/statbar/stbitem.cxx
+++ b/main/sfx2/source/statbar/stbitem.cxx
@@ -401,7 +401,7 @@ throw ( ::uno::RuntimeException )
{
::vos::OGuard aGuard( Application::GetSolarMutex() );
- OutputDevice* pOutDev = VCLUnoHelper::GetOutputDevice( xGraphics );;
+ OutputDevice* pOutDev = VCLUnoHelper::GetOutputDevice( xGraphics );
if ( pOutDev )
{
::Rectangle aRect = VCLRectangle( rOutputRectangle );
diff --git a/main/svx/source/gallery2/galctrl.cxx
b/main/svx/source/gallery2/galctrl.cxx
index 2d9d5552ea..8887053b0e 100644
--- a/main/svx/source/gallery2/galctrl.cxx
+++ b/main/svx/source/gallery2/galctrl.cxx
@@ -666,7 +666,7 @@ String GalleryListView::GetCellText(long _nRow, sal_uInt16
nColumnId) const
}
}
- return sRet;;
+ return sRet;
}
//
-----------------------------------------------------------------------------
diff --git a/main/sw/qa/core/Test-BigPtrArray.cxx
b/main/sw/qa/core/Test-BigPtrArray.cxx
index 5b3097362c..74f65046d0 100644
--- a/main/sw/qa/core/Test-BigPtrArray.cxx
+++ b/main/sw/qa/core/Test-BigPtrArray.cxx
@@ -145,7 +145,7 @@ TEST_F(BigPtrArrayUnittest, test_ctor)
BigPtrArray bparr;
- ASSERT_TRUE(bparr.Count() == 0) << "BigPtrArray ctor failed";;
+ ASSERT_TRUE(bparr.Count() == 0) << "BigPtrArray ctor failed";
}
TEST_F(BigPtrArrayUnittest, test_insert_entries_at_front)
diff --git a/main/sw/source/filter/basflt/shellio.cxx
b/main/sw/source/filter/basflt/shellio.cxx
index 7f426eb893..e09f45ede1 100644
--- a/main/sw/source/filter/basflt/shellio.cxx
+++ b/main/sw/source/filter/basflt/shellio.cxx
@@ -896,7 +896,7 @@ sal_uLong SwWriter::Write( WriterRef& rxWriter, const
String* pRealFileName )
// <--
{
const SwPageDesc& rPgDsc = const_cast<const SwDoc
*>(pOutDoc)->GetPageDesc( 0 );
- //const SwPageDesc& rPgDsc = *pOutDoc->GetPageDescFromPool(
RES_POOLPAGE_STANDARD );;
+ //const SwPageDesc& rPgDsc = *pOutDoc->GetPageDescFromPool(
RES_POOLPAGE_STANDARD );
const SwFmtFrmSize& rSz = rPgDsc.GetMaster().GetFrmSize();
// Clipboard-Dokument wird immer ohne Drucker angelegt, so ist
// der Std.PageDesc immer aug LONG_MAX !! Mappe dann auf DIN A4
diff --git a/main/sw/source/filter/ww8/ww8atr.cxx
b/main/sw/source/filter/ww8/ww8atr.cxx
index 21190219c6..2dae3aef45 100644
--- a/main/sw/source/filter/ww8/ww8atr.cxx
+++ b/main/sw/source/filter/ww8/ww8atr.cxx
@@ -2953,7 +2953,7 @@ void AttributeOutputBase::TextField( const SwFmtFld&
rField )
nScript = i18n::ScriptType::ASIAN;
long nHeight = ((SvxFontHeightItem&)(GetExport().GetItem(
- GetWhichOfScript(RES_CHRATR_FONTSIZE,nScript)))).GetHeight();;
+ GetWhichOfScript(RES_CHRATR_FONTSIZE,nScript)))).GetHeight();
nHeight = (nHeight + 10) / 20; //Font Size in points;
diff --git a/main/sw/source/ui/uiview/srcview.cxx
b/main/sw/source/ui/uiview/srcview.cxx
index a1cc09a90e..2a25f273d2 100644
--- a/main/sw/source/ui/uiview/srcview.cxx
+++ b/main/sw/source/ui/uiview/srcview.cxx
@@ -552,7 +552,7 @@ void SwSrcView::GetState(SfxItemSet& rSet)
nCount = rMgr.GetUndoActionCount();
if(nCount)
{
- String aStr(SvtResId(
STR_UNDO));;
+ String aStr(SvtResId(
STR_UNDO));
aStr +=
rMgr.GetUndoActionComment(--nCount);
rSet.Put(SfxStringItem(nWhich,
aStr));
}
@@ -564,7 +564,7 @@ void SwSrcView::GetState(SfxItemSet& rSet)
nCount = rMgr.GetRedoActionCount();
if(nCount)
{
- String aStr(SvtResId(
STR_REDO));;
+ String aStr(SvtResId(
STR_REDO));
aStr +=
rMgr.GetRedoActionComment(--nCount);
rSet.Put(SfxStringItem(nWhich,aStr));
}
diff --git a/main/tools/source/fsys/os2.cxx b/main/tools/source/fsys/os2.cxx
index d5e095f8b5..b2056fd4d1 100644
--- a/main/tools/source/fsys/os2.cxx
+++ b/main/tools/source/fsys/os2.cxx
@@ -387,7 +387,7 @@ USHORT DirReader_Impl::Read()
if ( pDir->pStatLst ) //Status fuer Sort gewuenscht?
pDir->ImpSortedInsert( pTemp, new FileStat( aStat ) );
else
- pDir->ImpSortedInsert( pTemp, NULL );;
+ pDir->ImpSortedInsert( pTemp, NULL );
return 1;
}
else
diff --git a/main/tools/source/generic/poly2.cxx
b/main/tools/source/generic/poly2.cxx
index dc5c6b8736..160be420ab 100644
--- a/main/tools/source/generic/poly2.cxx
+++ b/main/tools/source/generic/poly2.cxx
@@ -847,7 +847,7 @@ void PolyPolygon::Write( SvStream& rOStream ) const
// Die einzelnen Polygone ausgeben
for ( sal_uInt16 i = 0; i < nPolyCount; i++ )
- mpImplPolyPolygon->mpPolyAry[i]->ImplWrite( rOStream );;
+ mpImplPolyPolygon->mpPolyAry[i]->ImplWrite( rOStream );
}
// -----------------------------------------------------------------------
diff --git a/main/vcl/source/gdi/pdfwriter_impl.cxx
b/main/vcl/source/gdi/pdfwriter_impl.cxx
index 5631ac6d8f..e377467d70 100644
--- a/main/vcl/source/gdi/pdfwriter_impl.cxx
+++ b/main/vcl/source/gdi/pdfwriter_impl.cxx
@@ -6282,7 +6282,7 @@ sal_Int32 PDFWriterImpl::emitOutputIntent()
appendLiteralStringEncrypt( aComment ,nOIObject, aLine );
aLine.append("/DestOutputProfile ");
aLine.append( nICCObject );
- aLine.append( " 0 R>>\nendobj\n\n" );;
+ aLine.append( " 0 R>>\nendobj\n\n" );
CHECK_RETURN( writeBuffer( aLine.getStr(), aLine.getLength() ) );
return nOIObject;