This is an automated email from the ASF dual-hosted git repository.
mseidel pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/AOO42X by this push:
new 91393bc886 Remove second semicolon (work in progress)
91393bc886 is described below
commit 91393bc886a6c9418a760366ee1b764b96245023
Author: mseidel <[email protected]>
AuthorDate: Fri Apr 18 15:25:51 2025 +0200
Remove second semicolon (work in progress)
(cherry picked from commit 50626f15d150aeb2dd2a8b84c06d947679996b2d)
---
main/basic/source/basmgr/basmgr.cxx | 2 +-
main/basic/source/runtime/methods.cxx | 4 ++--
main/canvas/source/directx/dx_5rm.cxx | 2 +-
main/chart2/source/tools/AxisHelper.cxx | 2 +-
main/chart2/source/view/charttypes/VSeriesPlotter.cxx | 2 +-
main/chart2/source/view/main/ChartView.cxx | 4 ++--
main/connectivity/source/commontools/dbtools.cxx | 2 +-
main/cui/source/dialogs/SpellDialog.cxx | 2 +-
main/extensions/source/ole/oleobjw.cxx | 2 +-
main/extensions/test/ole/cpnt/cpnt.cxx | 2 +-
main/i18npool/source/localedata/LocaleNode.cxx | 2 +-
main/reportdesign/source/filter/xml/xmlExport.cxx | 2 +-
main/sc/source/core/data/dpobject.cxx | 2 +-
main/sc/source/ui/app/inputhdl.cxx | 2 +-
main/sd/source/ui/slideshow/slideshowimpl.cxx | 2 +-
main/sd/source/ui/unoidl/unoobj.cxx | 4 ++--
main/sd/source/ui/view/outlnvsh.cxx | 2 +-
main/sfx2/source/dialog/filedlghelper.cxx | 2 +-
main/sfx2/source/doc/doctempl.cxx | 2 +-
main/starmath/source/node.cxx | 2 +-
main/svtools/source/contnr/svimpicn.cxx | 2 +-
main/svtools/source/filter/exportdialog.cxx | 2 +-
main/svx/source/sidebar/nbdtmg.cxx | 6 +++---
main/sw/source/core/crsr/crstrvl.cxx | 2 +-
main/sw/source/core/edit/autofmt.cxx | 2 +-
main/sw/source/core/frmedt/fetab.cxx | 2 +-
main/sw/source/core/txtnode/txtedt.cxx | 2 +-
main/sw/source/ui/uno/unoatxt.cxx | 2 +-
main/sw/source/ui/uno/unotxvw.cxx | 10 +++++-----
main/vcl/source/control/edit.cxx | 2 +-
main/vcl/source/control/scrbar.cxx | 2 +-
main/vcl/source/gdi/bitmap3.cxx | 2 +-
main/vcl/source/gdi/metaact.cxx | 2 +-
main/vcl/source/gdi/outmap.cxx | 2 +-
main/xmloff/source/core/xmlexp.cxx | 2 +-
35 files changed, 44 insertions(+), 44 deletions(-)
diff --git a/main/basic/source/basmgr/basmgr.cxx
b/main/basic/source/basmgr/basmgr.cxx
index 0990679e8b..32043332b2 100644
--- a/main/basic/source/basmgr/basmgr.cxx
+++ b/main/basic/source/basmgr/basmgr.cxx
@@ -1602,7 +1602,7 @@ sal_Bool BasicManager::LoadLib( sal_uInt16 nLib )
{
String aLibName = pLibInfo->GetLibName();
xLibContainer->loadLibrary( aLibName );
- bDone = xLibContainer->isLibraryLoaded( aLibName );;
+ bDone = xLibContainer->isLibraryLoaded( aLibName );
}
else
{
diff --git a/main/basic/source/runtime/methods.cxx
b/main/basic/source/runtime/methods.cxx
index 64c82728ca..1b6c1ce278 100644
--- a/main/basic/source/runtime/methods.cxx
+++ b/main/basic/source/runtime/methods.cxx
@@ -997,7 +997,7 @@ RTLFUNC(InStr)
}
else
{
- bTextMode = 1;;
+ bTextMode = 1;
}
if ( nArgCount == 4 )
bTextMode = rPar.Get(4)->GetInteger();
@@ -1078,7 +1078,7 @@ RTLFUNC(InStrRev)
}
else
{
- bTextMode = 1;;
+ bTextMode = 1;
}
if ( nArgCount == 4 )
bTextMode = rPar.Get(4)->GetInteger();
diff --git a/main/canvas/source/directx/dx_5rm.cxx
b/main/canvas/source/directx/dx_5rm.cxx
index ce138833ed..b17e87592d 100644
--- a/main/canvas/source/directx/dx_5rm.cxx
+++ b/main/canvas/source/directx/dx_5rm.cxx
@@ -1684,7 +1684,7 @@ namespace dxcanvas
IDirectDrawSurface* pSurface;
aSurfaceDesc.dwSize = sizeof(DDSURFACEDESC);
- aSurfaceDesc.dwFlags = DDSD_CAPS | DDSD_HEIGHT |
DDSD_WIDTH | DDSD_PIXELFORMAT;;
+ aSurfaceDesc.dwFlags = DDSD_CAPS | DDSD_HEIGHT |
DDSD_WIDTH | DDSD_PIXELFORMAT;
aSurfaceDesc.dwWidth = rSize.getX();
aSurfaceDesc.dwHeight= rSize.getY();
diff --git a/main/chart2/source/tools/AxisHelper.cxx
b/main/chart2/source/tools/AxisHelper.cxx
index ccfd38074d..2377e69161 100644
--- a/main/chart2/source/tools/AxisHelper.cxx
+++ b/main/chart2/source/tools/AxisHelper.cxx
@@ -875,7 +875,7 @@ Sequence< Reference< beans::XPropertySet > >
AxisHelper::getAllGrids( const Refe
if( xGridProperties.is() )
aGridVector.push_back( xGridProperties );
- 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/view/charttypes/VSeriesPlotter.cxx
b/main/chart2/source/view/charttypes/VSeriesPlotter.cxx
index fb72d798fa..753621cb68 100644
--- a/main/chart2/source/view/charttypes/VSeriesPlotter.cxx
+++ b/main/chart2/source/view/charttypes/VSeriesPlotter.cxx
@@ -500,7 +500,7 @@ uno::Reference< drawing::XShape >
VSeriesPlotter::createDataLabel( const uno::Re
{
ASSERT_EXCEPTION( e );
}
- bool bMultiLineLabel = aSeparator.equals(C2U("\n"));;
+ bool bMultiLineLabel = aSeparator.equals(C2U("\n"));
sal_Int32 nLineCountForSymbolsize = 0;
{
if(pLabel->ShowCategoryName)
diff --git a/main/chart2/source/view/main/ChartView.cxx
b/main/chart2/source/view/main/ChartView.cxx
index 08df485a7e..33989d8ce8 100644
--- a/main/chart2/source/view/main/ChartView.cxx
+++ b/main/chart2/source/view/main/ChartView.cxx
@@ -1069,8 +1069,8 @@ void
SeriesPlotterContainer::AdaptScaleOfYAxisWithoutAttachedSeries( const uno::
ExplicitScaleData aExplicitScaleSource =
aVCooSysList_Y[nC]->getExplicitScale( 1,nAttachedAxisIndex );
ExplicitIncrementData aExplicitIncrementSource =
aVCooSysList_Y[nC]->getExplicitIncrement( 1,nAttachedAxisIndex );
- ExplicitScaleData aExplicitScaleDest =
aVCooSysList_Y[nC]->getExplicitScale( 1,nAxisIndex );;
- ExplicitIncrementData aExplicitIncrementDest =
aVCooSysList_Y[nC]->getExplicitIncrement( 1,nAxisIndex );;
+ ExplicitScaleData aExplicitScaleDest =
aVCooSysList_Y[nC]->getExplicitScale( 1,nAxisIndex );
+ ExplicitIncrementData aExplicitIncrementDest =
aVCooSysList_Y[nC]->getExplicitIncrement( 1,nAxisIndex );
aExplicitScaleDest.Orientation =
aExplicitScaleSource.Orientation;
aExplicitScaleDest.Scaling =
aExplicitScaleSource.Scaling;
diff --git a/main/connectivity/source/commontools/dbtools.cxx
b/main/connectivity/source/commontools/dbtools.cxx
index 036401e604..689876bf19 100644
--- a/main/connectivity/source/commontools/dbtools.cxx
+++ b/main/connectivity/source/commontools/dbtools.cxx
@@ -1063,7 +1063,7 @@ try
#ifdef DBG_UTIL
::rtl::OUString sMessage =
::rtl::OUString::createFromAscii("TransferFormComponentProperties : could not
transfer the value for property \"");
sMessage += pResult->Name;
- sMessage +=
::rtl::OUString::createFromAscii("\"");;
+ sMessage +=
::rtl::OUString::createFromAscii("\"");
OSL_ENSURE(sal_False,
::rtl::OUStringToOString(sMessage, RTL_TEXTENCODING_ASCII_US));
#endif
}
diff --git a/main/cui/source/dialogs/SpellDialog.cxx
b/main/cui/source/dialogs/SpellDialog.cxx
index bf15b4de5e..68a87e3f48 100644
--- a/main/cui/source/dialogs/SpellDialog.cxx
+++ b/main/cui/source/dialogs/SpellDialog.cxx
@@ -1552,7 +1552,7 @@ long SentenceEditWindow_Impl::PreNotify( NotifyEvent&
rNEvt )
break;
// 6 - on field FS and on error UE
case BRACE :
- nAction = bHasField ? ACTION_SELECTFIELD :
ACTION_UNDOEDIT;;
+ nAction = bHasField ? ACTION_SELECTFIELD : ACTION_UNDOEDIT;
break;
// 7 - UE
// 8 - UE
diff --git a/main/extensions/source/ole/oleobjw.cxx
b/main/extensions/source/ole/oleobjw.cxx
index e998f06719..0ffa05f1d5 100644
--- a/main/extensions/source/ole/oleobjw.cxx
+++ b/main/extensions/source/ole/oleobjw.cxx
@@ -631,7 +631,7 @@ sal_Bool SAL_CALL IUnknownWrapper_Impl::hasMethod( const
OUString& aName )
catch (...)
{
throw RuntimeException(OUSTR("[automation bridge] unexpected
exception in "
- "IUnknownWrapper_Impl::hasMethod !"),
Reference<XInterface>());;
+ "IUnknownWrapper_Impl::hasMethod !"),
Reference<XInterface>());
}
return ret;
}
diff --git a/main/extensions/test/ole/cpnt/cpnt.cxx
b/main/extensions/test/ole/cpnt/cpnt.cxx
index 585d6278df..994e0a748f 100644
--- a/main/extensions/test/ole/cpnt/cpnt.cxx
+++ b/main/extensions/test/ole/cpnt/cpnt.cxx
@@ -820,7 +820,7 @@ void SAL_CALL OComponent::setALong( ::sal_Int32 _along )
throw (RuntimeException
::sal_uInt32 SAL_CALL OComponent::getAULong() throw (RuntimeException)
{
- return m_attr_uint32;;
+ return m_attr_uint32;
}
void SAL_CALL OComponent::setAULong( ::sal_uInt32 _aulong ) throw
(RuntimeException)
diff --git a/main/i18npool/source/localedata/LocaleNode.cxx
b/main/i18npool/source/localedata/LocaleNode.cxx
index d3b5dbdea4..dbabadfffa 100644
--- a/main/i18npool/source/localedata/LocaleNode.cxx
+++ b/main/i18npool/source/localedata/LocaleNode.cxx
@@ -382,7 +382,7 @@ void LCCTYPENode::generateCode (const OFileWriter &of) const
}
::rtl::OUString str = getAttr() -> getValueByName("unoid");
of.writeAsciiString("\n\n");
- of.writeParameter("LC_CTYPE_Unoid", str);;
+ of.writeParameter("LC_CTYPE_Unoid", str);
OUString aDateSep =
writeParameterCheckLen( of, "DateSeparator", "dateSeparator", 1, 1);
diff --git a/main/reportdesign/source/filter/xml/xmlExport.cxx
b/main/reportdesign/source/filter/xml/xmlExport.cxx
index a844d9e35c..b7133537cc 100644
--- a/main/reportdesign/source/filter/xml/xmlExport.cxx
+++ b/main/reportdesign/source/filter/xml/xmlExport.cxx
@@ -1044,7 +1044,7 @@ void ORptExport::exportContainer(const Reference<
XSection>& _xSection)
// if ( bFormula )
// sFormula = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("rpt:"))
+ _sFormula.copy(nPos,nLength);
// else
- // sFormula =
::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("field:[")) +
_sFormula.copy(nPos,nLength) +
::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("]"));;
+ // sFormula =
::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("field:[")) +
_sFormula.copy(nPos,nLength) +
::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("]"));
//}
return sFormula;
}
diff --git a/main/sc/source/core/data/dpobject.cxx
b/main/sc/source/core/data/dpobject.cxx
index 2d080c4192..254693b928 100644
--- a/main/sc/source/core/data/dpobject.cxx
+++ b/main/sc/source/core/data/dpobject.cxx
@@ -286,7 +286,7 @@ void ScDPObject::SetSheetDesc(const ScSheetSourceDesc&
rDesc, bool bFromRefUpdat
pSheetDesc->aQueryParam.nCol1 = pSheetDesc->aSourceRange.aStart.Col();
pSheetDesc->aQueryParam.nRow1 = pSheetDesc->aSourceRange.aStart.Row();
pSheetDesc->aQueryParam.nCol2 = pSheetDesc->aSourceRange.aEnd.Col();
- pSheetDesc->aQueryParam.nRow2 = pSheetDesc->aSourceRange.aEnd.Row();;
+ pSheetDesc->aQueryParam.nRow2 = pSheetDesc->aSourceRange.aEnd.Row();
pSheetDesc->aQueryParam.bHasHeader = sal_True;
InvalidateSource(); // new source must be created
diff --git a/main/sc/source/ui/app/inputhdl.cxx
b/main/sc/source/ui/app/inputhdl.cxx
index 8a950373d0..6dd1096770 100644
--- a/main/sc/source/ui/app/inputhdl.cxx
+++ b/main/sc/source/ui/app/inputhdl.cxx
@@ -983,7 +983,7 @@ void ScInputHandler::UseFormulaData()
if ( aSel.nEndPos > 0 )
{
xub_StrLen nPos = aSel.nEndPos;
- String aFormula = aTotal.Copy( 0, nPos );;
+ String aFormula = aTotal.Copy( 0, nPos );
xub_StrLen nLeftParentPos = 0;
xub_StrLen nNextFStart = 0;
xub_StrLen nNextFEnd = 0;
diff --git a/main/sd/source/ui/slideshow/slideshowimpl.cxx
b/main/sd/source/ui/slideshow/slideshowimpl.cxx
index 0c18b3b676..8ad2e6cbd5 100644
--- a/main/sd/source/ui/slideshow/slideshowimpl.cxx
+++ b/main/sd/source/ui/slideshow/slideshowimpl.cxx
@@ -1573,7 +1573,7 @@ void SAL_CALL SlideshowImpl::resume() throw
(RuntimeException)
}
else
{
- mbIsPaused = sal_False;;
+ mbIsPaused = sal_False;
if( mxShow.is() )
{
mxShow->pause(sal_False);
diff --git a/main/sd/source/ui/unoidl/unoobj.cxx
b/main/sd/source/ui/unoidl/unoobj.cxx
index ef82471552..e40d429058 100644
--- a/main/sd/source/ui/unoidl/unoobj.cxx
+++ b/main/sd/source/ui/unoidl/unoobj.cxx
@@ -1536,7 +1536,7 @@ uno::Any SAL_CALL SdUnoEventsAccess::getByName( const
OUString& aName )
if ( SfxApplication::IsXScriptURL( pInfo->GetBookmark() ) )
{
// Scripting Framework URL
- aAny <<= maStrScript;;
+ aAny <<= maStrScript;
pProperties->Name = maStrEventType;
pProperties->Handle = -1;
pProperties->Value = aAny;
@@ -1553,7 +1553,7 @@ uno::Any SAL_CALL SdUnoEventsAccess::getByName( const
OUString& aName )
else
{
// Old Basic macro URL
- aAny <<= maStrStarBasic;;
+ aAny <<= maStrStarBasic;
pProperties->Name = maStrEventType;
pProperties->Handle = -1;
pProperties->Value = aAny;
diff --git a/main/sd/source/ui/view/outlnvsh.cxx
b/main/sd/source/ui/view/outlnvsh.cxx
index d835ddf51d..fdc7625d1a 100644
--- a/main/sd/source/ui/view/outlnvsh.cxx
+++ b/main/sd/source/ui/view/outlnvsh.cxx
@@ -2028,7 +2028,7 @@ sal_uLong OutlineViewShell::Read(SvStream& rInput, const
String& rBaseURL, sal_u
bRet = pOutl->Read( rInput, rBaseURL, eFormat,
GetDocSh()->GetHeaderAttributes() );
- SdPage* pPage = GetDoc()->GetSdPage(
GetDoc()->GetSdPageCount(PK_STANDARD) - 1, PK_STANDARD );;
+ SdPage* pPage = GetDoc()->GetSdPage(
GetDoc()->GetSdPageCount(PK_STANDARD) - 1, PK_STANDARD );
SfxStyleSheet* pTitleSheet = pPage->GetStyleSheetForPresObj(
PRESOBJ_TITLE );
SfxStyleSheet* pOutlSheet = pPage->GetStyleSheetForPresObj(
PRESOBJ_OUTLINE );
diff --git a/main/sfx2/source/dialog/filedlghelper.cxx
b/main/sfx2/source/dialog/filedlghelper.cxx
index 03e9e1a8e8..1a6e2525e2 100644
--- a/main/sfx2/source/dialog/filedlghelper.cxx
+++ b/main/sfx2/source/dialog/filedlghelper.cxx
@@ -849,7 +849,7 @@ ErrCode FileDialogHelper_Impl::getGraphic( Graphic&
rGraphic ) const
if ( ! maGraphic )
{
- OUString aPath;;
+ OUString aPath;
Sequence < OUString > aPathSeq = mxFileDlg->getFiles();
if ( aPathSeq.getLength() == 1 )
diff --git a/main/sfx2/source/doc/doctempl.cxx
b/main/sfx2/source/doc/doctempl.cxx
index 15d2047430..b97f612f36 100644
--- a/main/sfx2/source/doc/doctempl.cxx
+++ b/main/sfx2/source/doc/doctempl.cxx
@@ -2445,7 +2445,7 @@ sal_Bool SfxDocTemplate_Impl::Construct( )
uno::Reference< XLocalizable > xLocalizable( xTemplates, UNO_QUERY );
Sequence< Any > aCompareArg(1);
- *(aCompareArg.getArray()) <<= xLocalizable->getLocale();;
+ *(aCompareArg.getArray()) <<= xLocalizable->getLocale();
m_rCompareFactory = uno::Reference< XAnyCompareFactory >(
xFactory->createInstanceWithArguments(
OUString::createFromAscii( "com.sun.star.ucb.AnyCompareFactory" ),
aCompareArg ),
diff --git a/main/starmath/source/node.cxx b/main/starmath/source/node.cxx
index 451ae88846..b02ad9f90d 100644
--- a/main/starmath/source/node.cxx
+++ b/main/starmath/source/node.cxx
@@ -3010,7 +3010,7 @@ void SmSpecialNode::Prepare(const SmFormat &rFormat,
const SmDocShell &rDocShell
if (bItalic)
Attributes() |= ATTR_ITALIC;
else
- Attributes() &= ~ATTR_ITALIC;;
+ Attributes() &= ~ATTR_ITALIC;
}
};
diff --git a/main/svtools/source/contnr/svimpicn.cxx
b/main/svtools/source/contnr/svimpicn.cxx
index 1e1eb89ae2..c4dda576ed 100644
--- a/main/svtools/source/contnr/svimpicn.cxx
+++ b/main/svtools/source/contnr/svimpicn.cxx
@@ -860,7 +860,7 @@ void SvImpIconView::CheckSizes( SvLBoxEntry* pEntry,
if( aSize.Height() > nMaxBmpHeight )
{
nMaxBmpHeight = aSize.Height();
- nMaxBmpHeight += (2*TBOFFS_ICON);;
+ nMaxBmpHeight += (2*TBOFFS_ICON);
if( !(nFlags & F_GRIDMODE ) )
bMustRecalcBoundingRects = sal_True;
}
diff --git a/main/svtools/source/filter/exportdialog.cxx
b/main/svtools/source/filter/exportdialog.cxx
index 10ef44598c..204c4749f5 100644
--- a/main/svtools/source/filter/exportdialog.cxx
+++ b/main/svtools/source/filter/exportdialog.cxx
@@ -489,7 +489,7 @@ sal_Bool ExportDialog::GetGraphicStream()
else if ( mxShapes.is() )
xSourceDoc = uno::Reference< lang::XComponent
>( mxShapes, uno::UNO_QUERY_THROW );
else if ( mxShape.is() )
- xSourceDoc = uno::Reference< lang::XComponent
>( mxShape, uno::UNO_QUERY_THROW );;
+ xSourceDoc = uno::Reference< lang::XComponent
>( mxShape, uno::UNO_QUERY_THROW );
if ( xSourceDoc.is() )
{
xGraphicExporter->setSourceDocument( xSourceDoc
);
diff --git a/main/svx/source/sidebar/nbdtmg.cxx
b/main/svx/source/sidebar/nbdtmg.cxx
index 35f1f6dd7f..f2e1b0f2b6 100644
--- a/main/svx/source/sidebar/nbdtmg.cxx
+++ b/main/svx/source/sidebar/nbdtmg.cxx
@@ -1824,8 +1824,8 @@ sal_uInt16
OutlineTypeMgr::GetNBOIndexForNumRule(SvxNumRule& aNum,sal_uInt16 /*
sal_Bool bIsMatch = false;
if (pBrsh1==pBrsh2) bIsMatch =
true;
if (pBrsh1 && pBrsh2) {
- const Graphic* pGrf1 =
pBrsh1->GetGraphic();;
- const Graphic* pGrf2 =
pBrsh2->GetGraphic();;
+ const Graphic* pGrf1 =
pBrsh1->GetGraphic();
+ const Graphic* pGrf2 =
pBrsh2->GetGraphic();
if (pGrf1==pGrf2)
bIsMatch = true;
if (pGrf1 && pGrf2) {
if (
pGrf1->GetBitmap().IsEqual(pGrf2->GetBitmap()) &&
@@ -2016,7 +2016,7 @@ sal_Bool OutlineTypeMgr::ApplyNumRule(SvxNumRule&
aNum,sal_uInt16 nIndex,sal_uIn
if (isResetSize) aFmt.SetBulletRelSize(45);
}else if ((aFmt.GetNumberingType()&(~LINK_TOKEN)) ==
SVX_NUM_BITMAP ) {
if (pLevelSettings->pBrushItem) {
- const Graphic* pGrf =
pLevelSettings->pBrushItem->GetGraphic();;
+ const Graphic* pGrf =
pLevelSettings->pBrushItem->GetGraphic();
Size aSize = pLevelSettings->aSize;
sal_Int16 eOrient =
text::VertOrientation::LINE_CENTER;
if (!isResetSize &&
aFmt.GetGraphicSize()!=Size(0,0)) aSize=aFmt.GetGraphicSize();
diff --git a/main/sw/source/core/crsr/crstrvl.cxx
b/main/sw/source/core/crsr/crstrvl.cxx
index be9ce399b8..b11ce1c4dd 100644
--- a/main/sw/source/core/crsr/crstrvl.cxx
+++ b/main/sw/source/core/crsr/crstrvl.cxx
@@ -849,7 +849,7 @@ SwField* SwCrsrShell::GetCurFld( const bool
bIncludeInputFldAtStart ) const
return NULL;
}
- SwField* pCurFld = GetFieldAtCrsr( pCrsr, bIncludeInputFldAtStart );;
+ SwField* pCurFld = GetFieldAtCrsr( pCrsr, bIncludeInputFldAtStart );
if ( pCurFld != NULL
&& RES_TABLEFLD == pCurFld->GetTyp()->Which() )
{
diff --git a/main/sw/source/core/edit/autofmt.cxx
b/main/sw/source/core/edit/autofmt.cxx
index 5a98a35d87..49fd5a668d 100644
--- a/main/sw/source/core/edit/autofmt.cxx
+++ b/main/sw/source/core/edit/autofmt.cxx
@@ -1450,7 +1450,7 @@ void SwAutoFormat::BuildEnum( sal_uInt16 nLvl, sal_uInt16
nDigitLevel )
sal_Bool bBreak = sal_True;
// als erstes den akt. Einzug bestimmen und die Framebreite bestimmen
- SwTwips nFrmWidth = pAktTxtFrm->Prt().Width();;
+ SwTwips nFrmWidth = pAktTxtFrm->Prt().Width();
SwTwips nLeftTxtPos;
{
const sal_Unicode* pTxt = pAktTxtNd->GetTxt().GetBuffer(),
*pSav = pTxt;
diff --git a/main/sw/source/core/frmedt/fetab.cxx
b/main/sw/source/core/frmedt/fetab.cxx
index 9a8c115e00..1663d1e158 100644
--- a/main/sw/source/core/frmedt/fetab.cxx
+++ b/main/sw/source/core/frmedt/fetab.cxx
@@ -1463,7 +1463,7 @@ sal_uInt16 SwFEShell::GetCurTabColNum() const
{
long nX = (pFrm->Frm().*fnRect->fnGetRight)() -
(pPage->Frm().*fnRect->fnGetLeft)();
- const long nRight = aTabCols.GetLeftMin() +
aTabCols.GetRight();;
+ const long nRight = aTabCols.GetLeftMin() +
aTabCols.GetRight();
if ( !::IsSame( nX, nRight ) )
{
diff --git a/main/sw/source/core/txtnode/txtedt.cxx
b/main/sw/source/core/txtnode/txtedt.cxx
index 0e66a768ef..ce914056bd 100644
--- a/main/sw/source/core/txtnode/txtedt.cxx
+++ b/main/sw/source/core/txtnode/txtedt.cxx
@@ -472,7 +472,7 @@ void SwTxtNode::RstTxtAttr(
}
// Default behavior is to process all attributes:
- bool bSkipAttr = false;;
+ bool bSkipAttr = false;
boost::shared_ptr<SfxItemSet> pStyleHandle;
// 1. case: We want to reset only the attributes listed in pSet:
diff --git a/main/sw/source/ui/uno/unoatxt.cxx
b/main/sw/source/ui/uno/unoatxt.cxx
index 45cd427f2b..f1a644d1a2 100644
--- a/main/sw/source/ui/uno/unoatxt.cxx
+++ b/main/sw/source/ui/uno/unoatxt.cxx
@@ -78,7 +78,7 @@ uno::Reference< uno::XInterface > SAL_CALL
SwXAutoTextContainer_createInstance(
//the module may not be loaded
::vos::OGuard aGuard(Application::GetSolarMutex());
SwDLL::Init();
- static uno::Reference< uno::XInterface > xAText =
(cppu::OWeakObject*)new SwXAutoTextContainer();;
+ static uno::Reference< uno::XInterface > xAText =
(cppu::OWeakObject*)new SwXAutoTextContainer();
return xAText;
}
/* -----------------------------17.04.01 13:17--------------------------------
diff --git a/main/sw/source/ui/uno/unotxvw.cxx
b/main/sw/source/ui/uno/unotxvw.cxx
index 955b473da5..a9114de850 100644
--- a/main/sw/source/ui/uno/unotxvw.cxx
+++ b/main/sw/source/ui/uno/unotxvw.cxx
@@ -358,7 +358,7 @@ sal_Bool SwXTextView::select(const uno::Any& aInterface)
throw( lang::IllegalArg
}
}
- uno::Reference< text::XTextTable > xTbl(xInterface,
uno::UNO_QUERY);;
+ uno::Reference< text::XTextTable > xTbl(xInterface,
uno::UNO_QUERY);
if(xTbl.is() && xIfcTunnel.is())
{
@@ -407,7 +407,7 @@ sal_Bool SwXTextView::select(const uno::Any& aInterface)
throw( lang::IllegalArg
return sal_True;
}
}
- uno::Reference< text::XTextContent > xBkm(xInterface,
uno::UNO_QUERY);;
+ uno::Reference< text::XTextContent > xBkm(xInterface,
uno::UNO_QUERY);
if(xBkm.is() && xIfcTunnel.is())
{
@@ -548,7 +548,7 @@ uno::Any SwXTextView::getSelection(void) throw(
uno::RuntimeException )
DBG_ASSERT(rSh.GetTableFmt(), "kein
Tabellenformat?");
uno::Reference< text::XTextTableCursor
> xCrsr = new SwXTextTableCursor(*rSh.GetTableFmt(),
rSh.GetTableCrsr());
- aRef = uno::Reference< uno::XInterface
> (xCrsr, uno::UNO_QUERY);;
+ aRef = uno::Reference< uno::XInterface
> (xCrsr, uno::UNO_QUERY);
break;
}
@@ -617,7 +617,7 @@ uno::Any SwXTextView::getSelection(void) throw(
uno::RuntimeException )
{
SdrObject* pObj =
rMarkList.GetMark(i)->GetMarkedSdrObj();
uno::Reference< uno::XInterface > xInt
= pSvxDrawPage->GetInterface( pObj );
- uno::Reference< drawing::XShape >
xShape(xInt, uno::UNO_QUERY);;
+ uno::Reference< drawing::XShape >
xShape(xInt, uno::UNO_QUERY);
xShCol->add(xShape);
}
aRef = uno::Reference< uno::XInterface
>(xShCol, uno::UNO_QUERY);
@@ -2131,7 +2131,7 @@ sal_Int64 SAL_CALL SwXTextViewCursor::getSomething(
{
return sal::static_int_cast< sal_Int64 >( reinterpret_cast<
sal_IntPtr >( this ));
}
- return OTextCursorHelper::getSomething(rId);;
+ return OTextCursorHelper::getSomething(rId);
}
//
-----------------------------------------------------------------------------
diff --git a/main/vcl/source/control/edit.cxx b/main/vcl/source/control/edit.cxx
index d2f53d8351..c523c29a1e 100644
--- a/main/vcl/source/control/edit.cxx
+++ b/main/vcl/source/control/edit.cxx
@@ -764,7 +764,7 @@ void Edit::ImplDelete( const Selection& rSelection,
sal_uInt8 nDirection, sal_uI
else
{
sal_Int32 nCount = 1;
- aSelection.Max() = xBI->nextCharacters( maText,
aSelection.Max(), GetSettings().GetLocale(),
i18n::CharacterIteratorMode::SKIPCHARACTER, nCount, nCount );;
+ aSelection.Max() = xBI->nextCharacters( maText,
aSelection.Max(), GetSettings().GetLocale(),
i18n::CharacterIteratorMode::SKIPCHARACTER, nCount, nCount );
}
}
}
diff --git a/main/vcl/source/control/scrbar.cxx
b/main/vcl/source/control/scrbar.cxx
index 45091a4772..8baf230805 100644
--- a/main/vcl/source/control/scrbar.cxx
+++ b/main/vcl/source/control/scrbar.cxx
@@ -334,7 +334,7 @@ long ScrollBar::ImplCalcThumbPosPix( long nPos )
void ScrollBar::ImplCalc( sal_Bool bUpdate )
{
const Size aSize = GetOutputSizePixel();
- const long nMinThumbSize =
GetSettings().GetStyleSettings().GetMinThumbSize();;
+ const long nMinThumbSize =
GetSettings().GetStyleSettings().GetMinThumbSize();
Rectangle& maTrackRect = mpData->maTrackRect; // TODO: remove when
maTrackRect is no longer in mpData
if ( mbCalcSize )
diff --git a/main/vcl/source/gdi/bitmap3.cxx b/main/vcl/source/gdi/bitmap3.cxx
index c1121cf6f5..cd4cebe887 100644
--- a/main/vcl/source/gdi/bitmap3.cxx
+++ b/main/vcl/source/gdi/bitmap3.cxx
@@ -1390,7 +1390,7 @@ sal_Bool Bitmap::ImplScaleSuper(
long* pMapIY = new long[ nDstH ];
long* pMapFX = new long[ nDstW ];
long* pMapFY = new long[ nDstH ];
- long nX, nY, nXDst, nYDst;;
+ long nX, nY, nXDst, nYDst;
double fTemp;
long nTemp , nTempX, nTempY,
nTempFX, nTempFY;
sal_uInt8 cR0, cG0, cB0, cR1, cG1, cB1;
diff --git a/main/vcl/source/gdi/metaact.cxx b/main/vcl/source/gdi/metaact.cxx
index 18d2a40983..b4c633584c 100644
--- a/main/vcl/source/gdi/metaact.cxx
+++ b/main/vcl/source/gdi/metaact.cxx
@@ -959,7 +959,7 @@ void MetaPolyLineAction::Scale( double fScaleX, double
fScaleY )
sal_Bool MetaPolyLineAction::Compare( const MetaAction& rMetaAction ) const
{
- sal_Bool bIsEqual = sal_True;;
+ sal_Bool bIsEqual = sal_True;
if ( maLineInfo != ((MetaPolyLineAction&)rMetaAction).maLineInfo )
bIsEqual = sal_False;
else
diff --git a/main/vcl/source/gdi/outmap.cxx b/main/vcl/source/gdi/outmap.cxx
index 8fb87a1aae..6e7d4a1c70 100644
--- a/main/vcl/source/gdi/outmap.cxx
+++ b/main/vcl/source/gdi/outmap.cxx
@@ -275,7 +275,7 @@ static void ImplCalcMapResolution( const MapMode& rMapMode,
else
rMapRes.mnMapScNumX =
pSVData->maGDIData.mnAppFontX;
rMapRes.mnMapScDenomX = nDPIX * 40;
- rMapRes.mnMapScNumY = pSVData->maGDIData.mnAppFontY;;
+ rMapRes.mnMapScNumY = pSVData->maGDIData.mnAppFontY;
rMapRes.mnMapScDenomY = nDPIY * 80;
}
break;
diff --git a/main/xmloff/source/core/xmlexp.cxx
b/main/xmloff/source/core/xmlexp.cxx
index b503f278cf..8064381c94 100644
--- a/main/xmloff/source/core/xmlexp.cxx
+++ b/main/xmloff/source/core/xmlexp.cxx
@@ -2490,7 +2490,7 @@ void SvXMLExport::DisposingModel()
{
mxModel.clear();
// --> OD 2006-03-13 #i51726#
- meModelType = SvtModuleOptions::E_UNKNOWN_FACTORY;;
+ meModelType = SvtModuleOptions::E_UNKNOWN_FACTORY;
// <--
mxEventListener.clear();
}