core.git: sd/inc

2024-04-27 Thread Gabor Kelemen (via logerrit)
 sd/inc/glob.hxx |4 
 1 file changed, 4 deletions(-)

New commits:
commit 2f5ab5b8e7bd7dd06e00153abb77a69e5d192dd2
Author: Gabor Kelemen 
AuthorDate: Fri Apr 26 10:10:46 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Sat Apr 27 22:47:25 2024 +0200

Drop now unused option-stream identifiers

Change-Id: Id08e41e11b8027339e58ab182739087030e66eef
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166754
Reviewed-by: Gabor Kelemen 
Tested-by: Jenkins

diff --git a/sd/inc/glob.hxx b/sd/inc/glob.hxx
index ad4ce9f3584c..5905601507b6 100644
--- a/sd/inc/glob.hxx
+++ b/sd/inc/glob.hxx
@@ -50,8 +50,4 @@
 // Separator between layout name and template name of presentation templates
 inline constexpr OUString SD_LT_SEPARATOR = u"~LT~"_ustr;
 
-// option-stream identifier
-#define SD_OPTION_MORPHING  u"Morph"
-#define SD_OPTION_VECTORIZE u"Vectorize"
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */


core.git: sd/source

2024-04-26 Thread Gabor Kelemen (via logerrit)
 sd/source/ui/view/drviewsg.cxx |   10 +-
 sd/source/ui/view/frmview.cxx  |3 ++-
 2 files changed, 11 insertions(+), 2 deletions(-)

New commits:
commit fe0d8555150949bb8729c656af62917ffc48bbf8
Author: Gabor Kelemen 
AuthorDate: Tue Apr 23 16:28:52 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Fri Apr 26 17:01:25 2024 +0200

Use less SdOptionsLayout->IsDragStripes/SetDragStripes in favor of officecfg

Change-Id: I0c0e2dd57d1f1408f85bca4b6ee3bfcebae1cf22
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166596
Reviewed-by: Gabor Kelemen 
Tested-by: Jenkins

diff --git a/sd/source/ui/view/drviewsg.cxx b/sd/source/ui/view/drviewsg.cxx
index 2563168433d8..7dfd06e2177c 100644
--- a/sd/source/ui/view/drviewsg.cxx
+++ b/sd/source/ui/view/drviewsg.cxx
@@ -26,6 +26,8 @@
 #include 
 #include 
 #include 
+#include 
+#include 
 
 #include 
 
@@ -103,6 +105,8 @@ void DrawViewShell::ExecOptionsBar( SfxRequest& rReq )
 sal_uInt16 nSlot = rReq.GetSlot();
 
 SdOptions* pOptions = SD_MOD()->GetSdOptions(GetDoc()->GetDocumentType());
+std::shared_ptr batch(
+comphelper::ConfigurationChanges::create());
 
 switch( nSlot )
 {
@@ -137,7 +141,10 @@ void DrawViewShell::ExecOptionsBar( SfxRequest& rReq )
 
 case SID_HELPLINES_MOVE:
 {
-pOptions->SetDragStripes( !mpDrawView->IsDragStripes() );
+if ( GetDoc()->GetDocumentType() == DocumentType::Impress )
+
officecfg::Office::Impress::Layout::Display::Guide::set(!mpDrawView->IsDragStripes(),
 batch);
+else
+
officecfg::Office::Draw::Layout::Display::Guide::set(!mpDrawView->IsDragStripes(),
 batch);
 }
 break;
 
@@ -192,6 +199,7 @@ void DrawViewShell::ExecOptionsBar( SfxRequest& rReq )
 if( bDefault )
 return;
 
+batch->commit();
 pOptions->StoreConfig();
 
 // Saves the configuration IMMEDIATELY
diff --git a/sd/source/ui/view/frmview.cxx b/sd/source/ui/view/frmview.cxx
index 4071ee2734bf..88ae6825738b 100644
--- a/sd/source/ui/view/frmview.cxx
+++ b/sd/source/ui/view/frmview.cxx
@@ -286,11 +286,13 @@ void FrameView::Update(SdOptions const * pOptions)
 if (pDrawDocument->GetDocumentType() == DocumentType::Impress)
 {
 mbRuler = officecfg::Office::Impress::Layout::Display::Ruler::get();
+SetDragStripes( 
officecfg::Office::Impress::Layout::Display::Guide::get() );
 SetNoDragXorPolys ( 
!officecfg::Office::Impress::Layout::Display::Contour::get() );
 }
 else
 {
 mbRuler = officecfg::Office::Draw::Layout::Display::Ruler::get();
+SetDragStripes( officecfg::Office::Draw::Layout::Display::Guide::get() 
);
 SetNoDragXorPolys ( 
!officecfg::Office::Draw::Layout::Display::Contour::get() );
 }
 
@@ -302,7 +304,6 @@ void FrameView::Update(SdOptions const * pOptions)
 SetOFrmSnap( pOptions->IsSnapFrame() );
 SetOPntSnap( pOptions->IsSnapPoints() );
 SetHlplVisible( pOptions->IsHelplines() );
-SetDragStripes( pOptions->IsDragStripes() );
 SetPlusHandlesAlwaysVisible( pOptions->IsHandlesBezier() );
 SetSnapMagneticPixel( pOptions->GetSnapArea() );
 SetMarkedHitMovesAlways( pOptions->IsMarkedHitMovesAlways() );


core.git: sd/source

2024-04-26 Thread Gabor Kelemen (via logerrit)
 sd/source/ui/view/frmview.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit c724b81b033a9ff968a1a63d66005d48a6b97e57
Author: Gabor Kelemen 
AuthorDate: Tue Apr 23 15:39:59 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Fri Apr 26 16:59:49 2024 +0200

Use less SdOptionsLayout->IsMoveOutline in favor of officecfg

Change-Id: I848e11a64a42b670254c88b791d0b2a2534d112f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166595
Reviewed-by: Gabor Kelemen 
Tested-by: Jenkins

diff --git a/sd/source/ui/view/frmview.cxx b/sd/source/ui/view/frmview.cxx
index 6d8fad05af9d..4071ee2734bf 100644
--- a/sd/source/ui/view/frmview.cxx
+++ b/sd/source/ui/view/frmview.cxx
@@ -286,10 +286,12 @@ void FrameView::Update(SdOptions const * pOptions)
 if (pDrawDocument->GetDocumentType() == DocumentType::Impress)
 {
 mbRuler = officecfg::Office::Impress::Layout::Display::Ruler::get();
+SetNoDragXorPolys ( 
!officecfg::Office::Impress::Layout::Display::Contour::get() );
 }
 else
 {
 mbRuler = officecfg::Office::Draw::Layout::Display::Ruler::get();
+SetNoDragXorPolys ( 
!officecfg::Office::Draw::Layout::Display::Contour::get() );
 }
 
 SetGridVisible( pOptions->IsGridVisible() );
@@ -306,7 +308,6 @@ void FrameView::Update(SdOptions const * pOptions)
 SetMarkedHitMovesAlways( pOptions->IsMarkedHitMovesAlways() );
 SetMoveOnlyDragging( pOptions->IsMoveOnlyDragging() );
 SetSlantButShear( pOptions->IsMoveOnlyDragging() );
-SetNoDragXorPolys ( !pOptions->IsMoveOutline() );
 SetCrookNoContortion( pOptions->IsCrookNoContortion() );
 SetAngleSnapEnabled( pOptions->IsRotate() );
 SetBigOrtho( pOptions->IsBigOrtho() );


core.git: sd/inc sd/source

2024-04-26 Thread Gabor Kelemen (via logerrit)
 sd/inc/sdmod.hxx   |8 
 sd/source/ui/app/sdmod.cxx |   43 ---
 2 files changed, 51 deletions(-)

New commits:
commit 48e07052be600a5abf8ef4cbec20e1122e703b7e
Author: Gabor Kelemen 
AuthorDate: Thu Apr 25 16:52:14 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Fri Apr 26 15:16:05 2024 +0200

Drop now unused GetOptionStream class

Change-Id: Iddb1fbb437f0f66c551e9231d79511caf1edafb6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166635
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/sd/inc/sdmod.hxx b/sd/inc/sdmod.hxx
index 5008fc001f0b..b872ebf0913d 100644
--- a/sd/inc/sdmod.hxx
+++ b/sd/inc/sdmod.hxx
@@ -51,12 +51,6 @@ namespace com::sun::star::frame {
 class XFrame;
 }
 
-enum class SdOptionStreamMode
-{
-Load = 0,
-Store = 1
-};
-
 struct SdExtPropertySetInfoCacheCompare
 {
 bool operator()(const std::span& lhs, const 
std::span& rhs) const
@@ -104,7 +98,6 @@ public:
 voidGetState(SfxItemSet&);
 
 SdOptions*  GetSdOptions(DocumentType eDocType);
-SD_DLLPUBLIC rtl::Reference GetOptionStream( 
std::u16string_view rOptionName, SdOptionStreamMode eMode );
 
 boolGetWaterCan() const { return bWaterCan; }
 voidSetWaterCan( bool bWC ) { bWaterCan = bWC; }
@@ -140,7 +133,6 @@ private:
 SdOptions*  pDrawOptions;
 std::unique_ptr  pSearchItem;
 std::unique_ptr  pNumberFormatter;
-rtl::Reference  xOptionStorage;
 boolbWaterCan;
 std::unique_ptr mpErrorHdl;
 /** This device is used for printer independent layout.  It is virtual
diff --git a/sd/source/ui/app/sdmod.cxx b/sd/source/ui/app/sdmod.cxx
index f1b9a9bbe8a1..f18dd647a209 100644
--- a/sd/source/ui/app/sdmod.cxx
+++ b/sd/source/ui/app/sdmod.cxx
@@ -157,49 +157,6 @@ SdOptions* SdModule::GetSdOptions(DocumentType eDocType)
 return pOptions;
 }
 
-/**
- * Open and return option stream for internal options;
- * if the stream is opened for reading but does not exist, an 'empty'
- * RefObject is returned
- */
-rtl::Reference SdModule::GetOptionStream( 
std::u16string_view rOptionName,
-  SdOptionStreamMode eMode )
-{
-::sd::DrawDocShell* pDocSh = dynamic_cast< ::sd::DrawDocShell *>( 
SfxObjectShell::Current() );
-rtl::Reference xStm;
-
-if( pDocSh )
-{
-DocumentTypeeType = pDocSh->GetDoc()->GetDocumentType();
-
-if( !xOptionStorage.is() )
-{
-INetURLObject aURL( SvtPathOptions().GetUserConfigPath() );
-
-aURL.Append( u"drawing.cfg" );
-
-std::unique_ptr pStm = 
::utl::UcbStreamHelper::CreateStream( aURL.GetMainURL( 
INetURLObject::DecodeMechanism::NONE ), StreamMode::READWRITE );
-
-if( pStm )
-xOptionStorage = new SotStorage( pStm.release(), true );
-}
-
-OUStringaStmName;
-
-if( DocumentType::Draw == eType )
-aStmName = "Draw_";
-else
-aStmName = "Impress_";
-
-aStmName += rOptionName;
-
-if( SdOptionStreamMode::Store == eMode || xOptionStorage->IsContained( 
aStmName ) )
-xStm = xOptionStorage->OpenSotStream( aStmName );
-}
-
-return xStm;
-}
-
 SvNumberFormatter* SdModule::GetNumberFormatter()
 {
 if( !pNumberFormatter )


core.git: sd/inc sd/Library_sd.mk sd/source solenv/clang-format

2024-04-26 Thread Gabor Kelemen (via logerrit)
 sd/Library_sd.mk|1 
 sd/inc/sdiocmpt.hxx |   57 ---
 sd/source/core/sdiocmpt.cxx |  117 
 solenv/clang-format/excludelist |2 
 4 files changed, 177 deletions(-)

New commits:
commit 7437b842c420a43b85156f34146f27fc6b34c729
Author: Gabor Kelemen 
AuthorDate: Thu Apr 25 16:45:26 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Fri Apr 26 12:24:27 2024 +0200

Drop now unused sdiocmpt.cxx

Change-Id: Ibba331a536bbd6f228df005c3488a722a3631d4b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166634
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/sd/Library_sd.mk b/sd/Library_sd.mk
index dc9b38f011f3..12296242bedb 100644
--- a/sd/Library_sd.mk
+++ b/sd/Library_sd.mk
@@ -165,7 +165,6 @@ $(eval $(call gb_Library_add_exception_objects,sd,\
sd/source/core/drawdoc4 \
sd/source/core/drawdoc_animations \
sd/source/core/pglink \
-   sd/source/core/sdiocmpt \
sd/source/core/sdpage \
sd/source/core/sdpage2 \
sd/source/core/sdpage_animations \
diff --git a/sd/inc/sdiocmpt.hxx b/sd/inc/sdiocmpt.hxx
deleted file mode 100644
index 9f1395fd7c22..
--- a/sd/inc/sdiocmpt.hxx
+++ /dev/null
@@ -1,57 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#pragma once
-
-#include 
-#include "sddllapi.h"
-
-
-class old_SdrDownCompat
-{
-protected:
-SvStream&   rStream;
-sal_uInt32  nSubRecSiz;
-sal_uInt32  nSubRecPos;
-StreamMode  nMode;
-boolbOpen;
-
-protected:
-void Write();
-
-public:
-old_SdrDownCompat(SvStream& rNewStream, StreamMode nNewMode);
-~old_SdrDownCompat();
-void  OpenSubRecord();
-void  CloseSubRecord();
-};
-
-#define SDIOCOMPAT_VERSIONDONTKNOW sal_uInt16(0x)
-
-class SD_DLLPUBLIC SdIOCompat : public old_SdrDownCompat
-{
-public:
-// nNewMode: StreamMode::READ or StreamMode::WRITE
-// nVer: specify only when writing
-SdIOCompat(SvStream& rNewStream, StreamMode nNewMode,
-   sal_uInt16 nVer = SDIOCOMPAT_VERSIONDONTKNOW);
-~SdIOCompat();
-};
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sd/source/core/sdiocmpt.cxx b/sd/source/core/sdiocmpt.cxx
deleted file mode 100644
index 67de6a64d71d..
--- a/sd/source/core/sdiocmpt.cxx
+++ /dev/null
@@ -1,117 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#include 
-
-#include 
-
-old_SdrDownCompat::old_SdrDownCompat(SvStream& rNewStream, StreamMode nNewMode)
-:   rStream(rNewStream),
-nSubRecSiz(0),
-nSubRecPos(0),
-nMode(nNewMode),
-bOpen(false)
-{
-OpenSubRecord();
-}
-
-old_SdrDownCompat::~old_SdrDownCompat()
-{
-if(bOpen)
-CloseSubRecord();
-}
-
-void old_SdrDownCompat::Write()
-{
-rStream.WriteUInt32( nSubRecSiz );
-}
-
-void old_SdrDownCompat::OpenSubRecord()
-{
-if(rStream.GetError())
-return;
-
-nSubRecPos = rStream.Tell();
-
-if(nMode == StreamMode::READ)
-{
-rStream.ReadUInt32( nSubRecSiz );
-}
-else if(nMode == StreamMode::WRITE)
-{

core.git: sd/source

2024-04-26 Thread Gabor Kelemen (via logerrit)
 sd/source/ui/dlg/vectdlg.cxx |   49 ++-
 1 file changed, 12 insertions(+), 37 deletions(-)

New commits:
commit d119f504bf279a1bbe2e5840cfd5cbfa295fca8f
Author: Gabor Kelemen 
AuthorDate: Thu Apr 25 16:07:49 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Fri Apr 26 09:41:37 2024 +0200

tdf#158305 Store Convert to Polygon dialog settings correctly

Change-Id: I4d732adb8365cd4ecddf372b5646c14c7ffe828c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166631
Reviewed-by: Gabor Kelemen 
Tested-by: Jenkins

diff --git a/sd/source/ui/dlg/vectdlg.cxx b/sd/source/ui/dlg/vectdlg.cxx
index 93e9c3ed6e73..30760381e58f 100644
--- a/sd/source/ui/dlg/vectdlg.cxx
+++ b/sd/source/ui/dlg/vectdlg.cxx
@@ -17,6 +17,7 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
+#include 
 #include 
 #include 
 #include 
@@ -25,8 +26,6 @@
 #include 
 
 #include 
-#include 
-#include 
 #include 
 
 #define VECTORIZE_MAX_EXTENT 512
@@ -294,47 +293,23 @@ IMPL_LINK_NOARG(SdVectorizeDlg, MetricModifyHdl, 
weld::MetricSpinButton&, void)
 
 void SdVectorizeDlg::LoadSettings()
 {
-rtl::Reference  xIStm( SD_MOD()->GetOptionStream(
-   SD_OPTION_VECTORIZE ,
-   SdOptionStreamMode::Load ) );
-sal_uInt16  nLayers;
-sal_uInt16  nReduce;
-sal_uInt16  nFillHoles;
-boolbFillHoles;
-
-if( xIStm.is() )
-{
-SdIOCompat aCompat( *xIStm, StreamMode::READ );
-xIStm->ReadUInt16( nLayers ).ReadUInt16( nReduce ).ReadUInt16( 
nFillHoles ).ReadCharAsBool( bFillHoles );
-}
-else
-{
-nLayers = 8;
-nReduce = 0;
-nFillHoles = 32;
-bFillHoles = false;
-}
-
-m_xNmLayers->set_value(nLayers);
-m_xMtReduce->set_value(nReduce, FieldUnit::NONE);
-m_xMtFillHoles->set_value(nFillHoles, FieldUnit::NONE);
-m_xCbFillHoles->set_active(bFillHoles);
+
m_xNmLayers->set_value(officecfg::Office::Common::Vectorize::ColorCount::get());
+
m_xMtReduce->set_value(officecfg::Office::Common::Vectorize::PointReduce::get(),
 FieldUnit::NONE);
+
m_xCbFillHoles->set_active(officecfg::Office::Common::Vectorize::FillHole::get());
+
m_xMtFillHoles->set_value(officecfg::Office::Common::Vectorize::TileExtent::get(),
 FieldUnit::NONE);
 
 ToggleHdl(*m_xCbFillHoles);
 }
 
 void SdVectorizeDlg::SaveSettings() const
 {
-rtl::Reference xOStm( SD_MOD()->GetOptionStream(
-  SD_OPTION_VECTORIZE  ,
-  SdOptionStreamMode::Store ) );
-
-if( xOStm.is() )
-{
-SdIOCompat aCompat( *xOStm, StreamMode::WRITE, 1 );
-xOStm->WriteUInt16( m_xNmLayers->get_value() 
).WriteUInt16(m_xMtReduce->get_value(FieldUnit::NONE));
-xOStm->WriteUInt16( m_xMtFillHoles->get_value(FieldUnit::NONE) 
).WriteBool(m_xCbFillHoles->get_active());
-}
+std::shared_ptr batch(
+comphelper::ConfigurationChanges::create());
+
officecfg::Office::Common::Vectorize::ColorCount::set(m_xNmLayers->get_value(),batch);
+
officecfg::Office::Common::Vectorize::PointReduce::set(m_xMtReduce->get_value(FieldUnit::NONE),batch);
+
officecfg::Office::Common::Vectorize::FillHole::set(m_xCbFillHoles->get_active(),batch);
+
officecfg::Office::Common::Vectorize::TileExtent::set(m_xMtFillHoles->get_value(FieldUnit::NONE),batch);
+batch->commit();
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */


core.git: sd/source

2024-04-26 Thread Gabor Kelemen (via logerrit)
 sd/source/ui/dlg/morphdlg.cxx |   44 ++
 1 file changed, 11 insertions(+), 33 deletions(-)

New commits:
commit 7bd190858f5f044225eaad03ef41f736bfbbd8da
Author: Gabor Kelemen 
AuthorDate: Thu Apr 25 16:33:37 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Fri Apr 26 09:41:19 2024 +0200

tdf#158304 Store Cross-Fading dialog settings correctly

Change-Id: I3b8de3590a83def6fd6c77a504c69085dc2f0361
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166633
Reviewed-by: Gabor Kelemen 
Tested-by: Jenkins

diff --git a/sd/source/ui/dlg/morphdlg.cxx b/sd/source/ui/dlg/morphdlg.cxx
index 96ed63f0b52d..0e9b7ddf5558 100644
--- a/sd/source/ui/dlg/morphdlg.cxx
+++ b/sd/source/ui/dlg/morphdlg.cxx
@@ -19,14 +19,13 @@
 
 #include 
 
-#include 
-#include 
 #include 
 #include 
 #include 
 #include 
 #include 
 #include 
+#include 
 
 using namespace com::sun::star;
 
@@ -61,45 +60,24 @@ MorphDlg::MorphDlg(weld::Window* pParent, const SdrObject* 
pObj1, const SdrObjec
 
 MorphDlg::~MorphDlg()
 {
+SaveSettings();
 }
 
 void MorphDlg::LoadSettings()
 {
-rtl::Reference  xIStm( SD_MOD()->GetOptionStream( 
SD_OPTION_MORPHING ,
-   SdOptionStreamMode::Load ) );
-sal_uInt16  nSteps;
-boolbOrient, bAttrib;
-
-if( xIStm.is() )
-{
-SdIOCompat aCompat( *xIStm, StreamMode::READ );
-
-xIStm->ReadUInt16( nSteps ).ReadCharAsBool( bOrient ).ReadCharAsBool( 
bAttrib );
-}
-else
-{
-nSteps = 16;
-bOrient = bAttrib = true;
-}
-
-m_xMtfSteps->set_value(nSteps);
-m_xCbxOrientation->set_active(bOrient);
-m_xCbxAttributes->set_active(bAttrib);
+
m_xMtfSteps->set_value(officecfg::Office::Draw::Misc::CrossFading::Steps::get());
+
m_xCbxOrientation->set_active(officecfg::Office::Draw::Misc::CrossFading::Orientation::get());
+
m_xCbxAttributes->set_active(officecfg::Office::Draw::Misc::CrossFading::Attributes::get());
 }
 
 void MorphDlg::SaveSettings() const
 {
-rtl::Reference xOStm( SD_MOD()->GetOptionStream( 
SD_OPTION_MORPHING ,
-   SdOptionStreamMode::Store ) );
-
-if( xOStm.is() )
-{
-SdIOCompat aCompat( *xOStm, StreamMode::WRITE, 1 );
-
-xOStm->WriteUInt16( m_xMtfSteps->get_value() )
-  .WriteBool( m_xCbxOrientation->get_active() )
-  .WriteBool( m_xCbxAttributes->get_active() );
-}
+std::shared_ptr batch(
+comphelper::ConfigurationChanges::create());
+
officecfg::Office::Draw::Misc::CrossFading::Steps::set(m_xMtfSteps->get_value(),batch);
+
officecfg::Office::Draw::Misc::CrossFading::Orientation::set(m_xCbxOrientation->get_active(),batch);
+
officecfg::Office::Draw::Misc::CrossFading::Attributes::set(m_xCbxAttributes->get_active(),batch);
+batch->commit();
 }
 
 } // end of namespace sd


core.git: sd/source

2024-04-26 Thread Gabor Kelemen (via logerrit)
 sd/source/filter/html/pubdlg.cxx |  315 ---
 1 file changed, 315 deletions(-)

New commits:
commit febb429d5e02c2d6082194320ea689e8a01a3180
Author: Gabor Kelemen 
AuthorDate: Thu Apr 25 16:15:45 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Fri Apr 26 09:40:16 2024 +0200

Drop stale pubdlg.cxx file

Seems to be unused since
commit 28b6480c6bdd179f3943f768926b7f196226c768
tdf#105303: Drop html export wizard

Change-Id: I9d7aa80d64df6f68af51cd026ef49d6a61cf9cfa
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166632
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/sd/source/filter/html/pubdlg.cxx b/sd/source/filter/html/pubdlg.cxx
deleted file mode 100644
index 5b42d3c8cfad..
--- a/sd/source/filter/html/pubdlg.cxx
+++ /dev/null
@@ -1,315 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-
-#include 
-#include 
-#include "htmlattr.hxx"
-#include "htmlpublishmode.hxx"
-#include 
-#include "buttonset.hxx"
-#include 
-
-using namespace com::sun::star::uno;
-using namespace com::sun::star::beans;
-
-#define NOOFPAGES 6
-
-//ID for the config-data with the HTML-settings
-const sal_uInt16 nMagic = sal_uInt16(0x1977);
-
-// Key for the soffice.ini
-constexpr OUStringLiteral KEY_QUALITY = u"JPG-EXPORT-QUALITY";
-
-static SvStream& operator>>(SvStream& rIn, SdPublishingDesign& rDesign);
-
-static SvStream& WriteSdPublishingDesign(SvStream& rOut, const 
SdPublishingDesign& rDesign);
-
-// This class has all the settings for the HTML-export autopilot
-class SdPublishingDesign
-{
-public:
-OUString m_aDesignName;
-
-HtmlPublishMode m_eMode;
-
-// special WebCast options
-PublishingScript m_eScript;
-OUString m_aCGI;
-OUString m_aURL;
-
-// special Kiosk options
-bool m_bAutoSlide;
-sal_uInt32 m_nSlideDuration;
-bool m_bEndless;
-
-// special HTML options
-bool m_bContentPage;
-bool m_bNotes;
-
-// misc options
-sal_uInt16 m_nResolution;
-OUString m_aCompression;
-PublishingFormat m_eFormat;
-bool m_bSlideSound;
-bool m_bHiddenSlides;
-
-// title page information
-OUString m_aAuthor;
-OUString m_aEMail;
-OUString m_aWWW;
-OUString m_aMisc;
-bool m_bDownload;
-bool m_bCreated; // not used
-
-// buttons and colorscheme
-sal_Int16 m_nButtonThema;
-bool m_bUserAttr;
-Color m_aBackColor;
-Color m_aTextColor;
-Color m_aLinkColor;
-Color m_aVLinkColor;
-Color m_aALinkColor;
-bool m_bUseAttribs;
-bool m_bUseColor;
-
-SdPublishingDesign();
-
-bool operator==(const SdPublishingDesign& rDesign) const;
-friend SvStream& operator>>(SvStream& rIn, SdPublishingDesign& rDesign);
-friend SvStream& WriteSdPublishingDesign(SvStream& rOut, const 
SdPublishingDesign& rDesign);
-};
-
-// load Default-settings
-SdPublishingDesign::SdPublishingDesign()
-: m_eMode(PUBLISH_HTML)
-, m_eScript(SCRIPT_ASP)
-, m_bAutoSlide(true)
-, m_nSlideDuration(15)
-, m_bEndless(true)
-, m_bContentPage(true)
-, m_bNotes(true)
-, m_nResolution(PUB_LOWRES_WIDTH)
-, m_eFormat(FORMAT_PNG)
-, m_bSlideSound(true)
-, m_bHiddenSlides(false)
-, m_bDownload(false)
-, m_bCreated(false)
-, m_nButtonThema(-1)
-, m_bUserAttr(false)
-, m_aBackColor(COL_WHITE)
-, m_aTextColor(COL_BLACK)
-, m_aLinkColor(COL_BLUE)
-, m_aVLinkColor(COL_LIGHTGRAY)
-, m_aALinkColor(COL_GRAY)
-, m_bUseAttribs(true)
-, m_bUseColor(true)
-{
-FilterConfigItem 
aFilterConfigItem(u"Office.Common/Filter/Graphic/Export/JPG");
-sal_Int32 nCompression = aFilterConfigItem.ReadInt32(KEY_QUALITY, 75);
-m_aCompression = OUString::number(nCompression) + "%";
-
-SvtUserOptions aUserOptions;
-m_aAuthor = aUserOptions.GetFirstName();
-if (!m_aAuthor.isEmpty() && 

core.git: sd/source

2024-04-26 Thread Gabor Kelemen (via logerrit)
 sd/source/ui/view/drviewse.cxx |   15 ---
 sd/source/ui/view/frmview.cxx  |   13 -
 2 files changed, 24 insertions(+), 4 deletions(-)

New commits:
commit 3029019cd930fd672ceda413376a26a33fdbad38
Author: Gabor Kelemen 
AuthorDate: Tue Apr 16 14:16:19 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Fri Apr 26 09:38:25 2024 +0200

Use less SdOptionsLayout->IsRulerVisible/SetRulerVisible in favor of 
officecfg

Change-Id: I0f6b38d364fb880e8dcd3cae08f2c5298cb7a5bf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166594
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/sd/source/ui/view/drviewse.cxx b/sd/source/ui/view/drviewse.cxx
index a49ce83b15e3..d7cc62eb9ce0 100644
--- a/sd/source/ui/view/drviewse.cxx
+++ b/sd/source/ui/view/drviewse.cxx
@@ -96,6 +96,8 @@
 #include 
 #include 
 #include 
+#include 
+#include 
 
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
@@ -1117,12 +1119,19 @@ void DrawViewShell::FuSupport(SfxRequest& rReq)
 
 if(bOldHasRuler != bHasRuler)
 {
-SdOptions* pOptions = 
SD_MOD()->GetSdOptions(GetDoc()->GetDocumentType());
+std::shared_ptr batch(
+comphelper::ConfigurationChanges::create());
 
-if(pOptions && pOptions->IsRulerVisible() != bHasRuler)
+if (GetDoc()->GetDocumentType() == DocumentType::Impress)
 {
-pOptions->SetRulerVisible(bHasRuler);
+
officecfg::Office::Impress::Layout::Display::Ruler::set(bHasRuler, batch);
 }
+else
+{
+
officecfg::Office::Draw::Layout::Display::Ruler::set(bHasRuler, batch);
+}
+
+batch->commit();
 }
 
 Invalidate (SID_RULER);
diff --git a/sd/source/ui/view/frmview.cxx b/sd/source/ui/view/frmview.cxx
index 50cf9d636396..6d8fad05af9d 100644
--- a/sd/source/ui/view/frmview.cxx
+++ b/sd/source/ui/view/frmview.cxx
@@ -41,6 +41,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 
 using namespace ::com::sun::star;
@@ -280,7 +281,17 @@ void FrameView::Update(SdOptions const * pOptions)
 if (!pOptions)
 return;
 
-mbRuler = pOptions->IsRulerVisible();
+SdDrawDocument* pDrawDocument = dynamic_cast(());
+
+if (pDrawDocument->GetDocumentType() == DocumentType::Impress)
+{
+mbRuler = officecfg::Office::Impress::Layout::Display::Ruler::get();
+}
+else
+{
+mbRuler = officecfg::Office::Draw::Layout::Display::Ruler::get();
+}
+
 SetGridVisible( pOptions->IsGridVisible() );
 SetSnapAngle( pOptions->GetAngle() );
 SetGridSnap( pOptions->IsUseGridSnap() );


core.git: sd/source

2024-04-26 Thread Gabor Kelemen (via logerrit)
 sd/source/ui/dlg/tpoption.cxx |   47 +-
 1 file changed, 33 insertions(+), 14 deletions(-)

New commits:
commit cb80115f79e59720406ea245d7d914487ab343d8
Author: Gabor Kelemen 
AuthorDate: Sat Apr 13 09:09:08 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Fri Apr 26 09:37:43 2024 +0200

Use less SdOptionsLayoutItem in Options - Impress - View

in favor of officecfg

Change-Id: I3aea51bf0c1a2184163c07bf42b26164311843de
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166593
Reviewed-by: Gabor Kelemen 
Tested-by: Jenkins

diff --git a/sd/source/ui/dlg/tpoption.cxx b/sd/source/ui/dlg/tpoption.cxx
index 812d39ffd8aa..39f04d15a915 100644
--- a/sd/source/ui/dlg/tpoption.cxx
+++ b/sd/source/ui/dlg/tpoption.cxx
@@ -197,7 +197,7 @@ OUString SdTpOptionsContents::GetAllStrings()
 return sAllStrings.replaceAll("_", "");
 }
 
-bool SdTpOptionsContents::FillItemSet( SfxItemSet* rAttrs )
+bool SdTpOptionsContents::FillItemSet( SfxItemSet* )
 {
 bool bModified = false;
 
@@ -206,27 +206,46 @@ bool SdTpOptionsContents::FillItemSet( SfxItemSet* rAttrs 
)
 m_xCbxDragStripes->get_state_changed_from_saved() ||
 m_xCbxHandlesBezier->get_state_changed_from_saved() )
 {
-SdOptionsLayoutItem aOptsItem;
+std::shared_ptr batch(
+comphelper::ConfigurationChanges::create());
 
-aOptsItem.GetOptionsLayout().SetRulerVisible( 
m_xCbxRuler->get_active() );
-aOptsItem.GetOptionsLayout().SetMoveOutline( 
m_xCbxMoveOutline->get_active() );
-aOptsItem.GetOptionsLayout().SetDragStripes( 
m_xCbxDragStripes->get_active() );
-aOptsItem.GetOptionsLayout().SetHandlesBezier( 
m_xCbxHandlesBezier->get_active() );
+if (m_bDrawMode)
+{
+officecfg::Office::Draw::Layout::Display::Ruler::set( 
m_xCbxRuler->get_active(), batch );
+officecfg::Office::Draw::Layout::Display::Contour::set( 
m_xCbxMoveOutline->get_active(), batch );
+officecfg::Office::Draw::Layout::Display::Guide::set( 
m_xCbxDragStripes->get_active(), batch );
+officecfg::Office::Draw::Layout::Display::Bezier::set( 
m_xCbxHandlesBezier->get_active(), batch );
+}
+else
+{
+officecfg::Office::Impress::Layout::Display::Ruler::set( 
m_xCbxRuler->get_active(), batch );
+officecfg::Office::Impress::Layout::Display::Contour::set( 
m_xCbxMoveOutline->get_active(), batch );
+officecfg::Office::Impress::Layout::Display::Guide::set( 
m_xCbxDragStripes->get_active(), batch );
+officecfg::Office::Impress::Layout::Display::Bezier::set( 
m_xCbxHandlesBezier->get_active(), batch );
+}
 
-rAttrs->Put( aOptsItem );
+batch->commit();
 bModified = true;
 }
 return bModified;
 }
 
-void SdTpOptionsContents::Reset( const SfxItemSet* rAttrs )
+void SdTpOptionsContents::Reset( const SfxItemSet* )
 {
-SdOptionsLayoutItem aLayoutItem( rAttrs->Get( ATTR_OPTIONS_LAYOUT ) );
-
-m_xCbxRuler->set_active( aLayoutItem.GetOptionsLayout().IsRulerVisible() );
-m_xCbxMoveOutline->set_active( 
aLayoutItem.GetOptionsLayout().IsMoveOutline() );
-m_xCbxDragStripes->set_active( 
aLayoutItem.GetOptionsLayout().IsDragStripes() );
-m_xCbxHandlesBezier->set_active( 
aLayoutItem.GetOptionsLayout().IsHandlesBezier() );
+if (m_bDrawMode)
+{
+m_xCbxRuler->set_active( 
officecfg::Office::Draw::Layout::Display::Ruler::get() );
+m_xCbxMoveOutline->set_active( 
officecfg::Office::Draw::Layout::Display::Contour::get() );
+m_xCbxDragStripes->set_active( 
officecfg::Office::Draw::Layout::Display::Guide::get() );
+m_xCbxHandlesBezier->set_active( 
officecfg::Office::Draw::Layout::Display::Bezier::get() );
+}
+else
+{
+
m_xCbxRuler->set_active(officecfg::Office::Impress::Layout::Display::Ruler::get()
 );
+
m_xCbxMoveOutline->set_active(officecfg::Office::Impress::Layout::Display::Contour::get()
 );
+
m_xCbxDragStripes->set_active(officecfg::Office::Impress::Layout::Display::Guide::get()
 );
+
m_xCbxHandlesBezier->set_active(officecfg::Office::Impress::Layout::Display::Bezier::get()
 );
+}
 
 bool bReadOnly = m_bDrawMode ? 
officecfg::Office::Draw::Layout::Display::Ruler::isReadOnly() :
 officecfg::Office::Impress::Layout::Display::Ruler::isReadOnly();


core.git: 2 commits - officecfg/registry sd/source

2024-04-13 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Draw.xcs|4 
 officecfg/registry/schema/org/openoffice/Office/Impress.xcs |4 
 sd/source/ui/app/optsitem.cxx   |   50 
 sd/source/ui/inc/optsitem.hxx   |   18 
 4 files changed, 9 insertions(+), 67 deletions(-)

New commits:
commit 88ccd5e71143e3a3676fb1eaeb9e16f522a90784
Author: Gabor Kelemen 
AuthorDate: Wed Apr 3 22:32:38 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Sat Apr 13 09:41:11 2024 +0200

Mark obsolete Impress/Draw config keys as deprecated

Practically unused since 2007 commit
56ca5814a1843a31d23b249f1960a31532c6b5bd

Change-Id: Idd7cf4f239efed16a151fc4c755c249947d927f8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165859
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Draw.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Draw.xcs
index c7ce19c2d6f4..dc6fa42f9e04 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Draw.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Draw.xcs
@@ -187,6 +187,7 @@
   
 Indicates whether to show only outlines of graphical 
objects.
 Image placeholders
+Not used anymore
   
   false
 
@@ -195,6 +196,7 @@
   
 Indicates whether to show only outlines of draw 
objects.
 Contour mode
+Not used anymore
   
   false
 
@@ -203,6 +205,7 @@
   
 Indicates whether to use placeholders for text in draw 
objects.
 Text placeholders
+Not used anymore
   
   false
 
@@ -211,6 +214,7 @@
   
 Indicates whether to show only hairlines instead of an 
object's linestyle.
 Line contour only
+Not used anymore
   
   false
 
diff --git a/officecfg/registry/schema/org/openoffice/Office/Impress.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Impress.xcs
index 876780d1bd09..e6bda773491f 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Impress.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Impress.xcs
@@ -290,6 +290,7 @@
   
 Indicates whether to show only the bounding box of 
graphic-objects like bitmaps and drawings.
 Image placeholders
+Not used anymore
   
   false
 
@@ -298,6 +299,7 @@
   
 Indicates whether to show only outlines of objects such as 
filled rectangles and filled ellipses.
 Contour mode
+Not used anymore
   
   false
 
@@ -306,6 +308,7 @@
   
 Indicates whether to show only a placeholder for text in 
graphical objects.
 Text placeholders
+Not used anymore
   
   false
 
@@ -314,6 +317,7 @@
   
 Indicates whether to show only hairlines instead of the true 
line styles.
 Line contour only
+Not used anymore
   
   false
 
commit 912aa66a0623787eb2e29d01780140be6cccf27e
Author: Gabor Kelemen 
AuthorDate: Wed Apr 3 20:52:15 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Sat Apr 13 09:40:57 2024 +0200

Drop unused SdOptionsContents class

seems to be practically out of use since 2007 commit
56ca5814a1843a31d23b249f1960a31532c6b5bd
part of patch series '#i80528# Removal of draft paint modes'

Change-Id: I770bab8b1973bec099ffdaa3243f1c0d2995ee52
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165858
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/sd/source/ui/app/optsitem.cxx b/sd/source/ui/app/optsitem.cxx
index 925cfaa15662..1aee9d7d7afc 100644
--- a/sd/source/ui/app/optsitem.cxx
+++ b/sd/source/ui/app/optsitem.cxx
@@ -336,54 +336,6 @@ void SdOptionsLayoutItem::SetOptions( SdOptions* pOpts ) 
const
 }
 }
 
-/*
-|*
-|* SdOptionsContents
-|*
-\/
-
-SdOptionsContents::SdOptionsContents(bool bImpress) :
-SdOptionsGeneric( bImpress, bImpress ?
-OUString( "Office.Impress/Content" ) :
-OUString( "Office.Draw/Content" ) )
-{
-EnableModify( true );
-}
-
-bool SdOptionsContents::operator==(const SdOptionsContents&) const
-{
-return true;
-}
-
-void SdOptionsContents::GetPropNameArray( const char**& ppNames, sal_uLong& 
rCount ) const
-{
-static const char* aPropNames[] =
-{
-"Display/PicturePlaceholder",
-"Display/ContourMode",
-"Display/LineContour",
-"Display/TextPlaceholder"
-};
-
-rCount = SAL_N_ELEMENTS(aPropNames);
-ppNames = 

core.git: sc/qa

2024-04-10 Thread Gabor Kelemen (via logerrit)
 sc/qa/unit/helper/debughelper.hxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit fa42bdabcab05bd6c671b9e255f4ffe6293bc0e9
Author: Gabor Kelemen 
AuthorDate: Tue Apr 9 19:10:33 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Wed Apr 10 13:31:03 2024 +0200

Drop unused define CALC_TEST_PERF

Seems to be not used since 2016 commit
52871b360c73efd59bfbc811b8b89a02b6375b29

Change-Id: Ie1f95ece6d9b6efe93dd16adcdacd644deb21fdb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165914
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/sc/qa/unit/helper/debughelper.hxx 
b/sc/qa/unit/helper/debughelper.hxx
index 2a16d532128a..0132c03640fa 100644
--- a/sc/qa/unit/helper/debughelper.hxx
+++ b/sc/qa/unit/helper/debughelper.hxx
@@ -20,7 +20,6 @@
 #endif
 
 #define CALC_DEBUG_OUTPUT 0
-#define CALC_TEST_PERF 0
 
 #include 
 


core.git: sw/qa sw/source

2024-04-10 Thread Gabor Kelemen (via logerrit)
 sw/qa/core/test_ToxMiscTest.cxx|2 --
 sw/qa/extras/accessibility/accessible_relation_set.cxx |1 -
 sw/qa/extras/uiwriter/uiwriter6.cxx|1 -
 sw/source/core/access/accpara.cxx  |1 -
 sw/source/core/bastyp/SwSmartTagMgr.cxx|1 -
 sw/source/core/crsr/crsrsh.cxx |1 -
 sw/source/core/doc/docdraw.cxx |1 -
 sw/source/core/doc/docedt.cxx  |1 -
 sw/source/core/doc/docfld.cxx  |2 --
 sw/source/core/doc/docfmt.cxx  |1 -
 sw/source/core/doc/poolfmt.cxx |1 -
 sw/source/core/doc/tblrwcl.cxx |1 -
 sw/source/core/edit/edtab.cxx  |1 -
 sw/source/core/edit/edtox.cxx  |1 -
 sw/source/core/fields/reffld.cxx   |1 -
 sw/source/core/text/txthyph.cxx|1 -
 sw/source/core/txtnode/thints.cxx  |2 --
 sw/source/core/undo/unovwr.cxx |1 -
 sw/source/filter/ww8/wrtw8esh.cxx  |1 -
 sw/source/filter/ww8/wrtw8num.cxx  |2 --
 sw/source/filter/ww8/ww8par3.cxx   |1 -
 sw/source/filter/xml/wrtxml.cxx|1 -
 sw/source/filter/xml/xmlexp.cxx|3 ---
 sw/source/filter/xml/xmlfmte.cxx   |3 ---
 sw/source/filter/xml/xmlfonte.cxx  |4 
 sw/source/filter/xml/xmlimp.cxx|1 -
 sw/source/filter/xml/xmliteme.cxx  |1 -
 sw/source/filter/xml/xmlmeta.cxx   |3 ---
 sw/source/filter/xml/xmlscript.cxx |2 --
 sw/source/filter/xml/xmltble.cxx   |2 --
 sw/source/filter/xml/xmltexte.cxx  |2 --
 sw/source/ui/chrdlg/chardlg.cxx|1 -
 sw/source/ui/chrdlg/drpcps.cxx |1 -
 sw/source/ui/config/mailconfigpage.cxx |2 --
 sw/source/ui/config/optcomp.cxx|1 -
 sw/source/ui/dbui/mailmergewizard.cxx  |1 -
 sw/source/ui/dbui/mmdocselectpage.cxx  |1 -
 sw/source/ui/dbui/mmgreetingspage.cxx  |1 -
 sw/source/ui/dbui/mmlayoutpage.cxx |2 --
 sw/source/ui/dbui/mmresultdialogs.cxx  |1 -
 sw/source/ui/envelp/envlop1.cxx|2 --
 sw/source/ui/envelp/labelexp.cxx   |1 -
 sw/source/ui/envelp/labfmt.cxx |2 --
 sw/source/ui/fldui/changedb.cxx|1 -
 sw/source/ui/index/cntex.cxx   |2 --
 sw/source/ui/misc/contentcontrollistitemdlg.cxx|2 --
 sw/source/ui/misc/glossary.cxx |1 -
 sw/source/ui/misc/srtdlg.cxx   |1 -
 sw/source/uibase/app/docsh2.cxx|1 -
 sw/source/uibase/app/swmodul1.cxx  |2 --
 sw/source/uibase/dialog/SwSpellDialogChildWindow.cxx   |2 --
 sw/source/uibase/docvw/romenu.cxx  |3 ---
 sw/source/uibase/fldui/fldmgr.cxx  |1 -
 sw/source/uibase/fldui/xfldui.cxx  |1 -
 sw/source/uibase/lingu/hhcwrp.cxx  |1 -
 sw/source/uibase/shells/basesh.cxx |1 -
 sw/source/uibase/shells/drawdlg.cxx|2 --
 sw/source/uibase/shells/drwbassh.cxx   |1 -
 sw/source/uibase/shells/grfshex.cxx|2 --
 sw/source/uibase/shells/textsh2.cxx|3 ---
 sw/source/uibase/uiview/view.cxx   |1 -
 sw/source/uibase/uiview/view2.cxx  |1 -
 sw/source/uibase/uiview/viewmdi.cxx|2 --
 sw/source/uibase/uiview/viewsrch.cxx   |2 --
 sw/source/uibase/utlui/numfmtlb.cxx|3 ---
 65 files changed, 99 deletions(-)

New commits:
commit 1a91641fd6fd84eb0bfae75db54f35c7771a2a1c
Author: Gabor Kelemen 
AuthorDate: Mon Apr 1 10:33:57 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Wed Apr 10 09:19:42 2024 +0200

tdf#146619 Drop unused 'using namespace' in: sw/

Change-Id: I56463130ab617b0e11e237718cb8456913373818
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165696
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/sw/qa/core/test_ToxMiscTest.cxx b/sw/qa/core/test_ToxMiscTest.cxx
index c7e6223b927b..3e75f06b16bd 100644
--- a/sw/qa/core/test_ToxMiscTest.cxx
+++ b/sw/qa/core/test_ToxMiscTest.cxx
@@ -12,8 +12,6 @@
 #include 
 #include 
 
-using namespace sw;
-
 class 

core.git: sc/qa sc/source

2024-04-10 Thread Gabor Kelemen (via logerrit)
 sc/qa/extras/htmlexporttest.cxx   |5 -
 sc/qa/extras/sccheck_data_pilot_field.cxx |1 -
 sc/qa/extras/sccheck_data_pilot_table.cxx |1 -
 sc/qa/extras/sccheck_xcell_ranges_query.cxx   |1 -
 sc/qa/unit/dataproviders_test.cxx |1 -
 sc/qa/unit/filters-test.cxx   |1 -
 sc/qa/unit/helper/debughelper.hxx |2 --
 sc/qa/unit/opencl-test-1.cxx  |1 -
 sc/qa/unit/opencl-test-2.cxx  |1 -
 sc/qa/unit/pivottable_filters_test.cxx|1 -
 sc/qa/unit/subsequent_filters_test.cxx|1 -
 sc/qa/unit/ucalc_parallelism.cxx  |1 -
 sc/source/core/opencl/op_addin.cxx|2 --
 sc/source/core/opencl/op_array.cxx|2 --
 sc/source/core/opencl/op_financial.cxx|2 --
 sc/source/core/opencl/op_logical.cxx  |2 --
 sc/source/core/opencl/op_statistical.cxx  |2 --
 sc/source/core/tool/formulaparserpool.cxx |1 -
 sc/source/filter/excel/xepivot.cxx|2 --
 sc/source/filter/oox/commentsbuffer.cxx   |2 --
 sc/source/filter/oox/pivotcachefragment.cxx   |1 -
 sc/source/filter/oox/workbooksettings.cxx |1 -
 sc/source/ui/Accessibility/AccessibilityHints.cxx |2 --
 sc/source/ui/dataprovider/sqldataprovider.cxx |1 -
 sc/source/ui/dataprovider/xmldataprovider.cxx |2 --
 sc/source/ui/dbgui/dapitype.cxx   |2 --
 sc/source/ui/drawfunc/drawsh2.cxx |1 -
 sc/source/ui/unoobj/drdefuno.cxx  |2 --
 sc/source/ui/view/formatsh.cxx|2 --
 29 files changed, 46 deletions(-)

New commits:
commit d70f461d83e72bfea63526706a07c1e0c4dea66d
Author: Gabor Kelemen 
AuthorDate: Mon Apr 1 09:11:08 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Wed Apr 10 09:19:27 2024 +0200

tdf#146619 Drop unused 'using namespace' in: sc/

Change-Id: I03478dd4c8e3c2ac88c0fe5e51efd53b09888475
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165695
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/sc/qa/extras/htmlexporttest.cxx b/sc/qa/extras/htmlexporttest.cxx
index 75d7d9e758ce..859b5a90d008 100644
--- a/sc/qa/extras/htmlexporttest.cxx
+++ b/sc/qa/extras/htmlexporttest.cxx
@@ -12,11 +12,6 @@
 #include 
 #include 
 
-using namespace css::uno;
-using namespace css::lang;
-using namespace css::frame;
-using namespace utl;
-
 class ScHTMLExportTest : public UnoApiXmlTest, public HtmlTestTools
 {
 public:
diff --git a/sc/qa/extras/sccheck_data_pilot_field.cxx 
b/sc/qa/extras/sccheck_data_pilot_field.cxx
index 52cc34481958..6d65b0e12a27 100644
--- a/sc/qa/extras/sccheck_data_pilot_field.cxx
+++ b/sc/qa/extras/sccheck_data_pilot_field.cxx
@@ -25,7 +25,6 @@
 //check the DataPilot of Calc.
 
 using namespace css;
-using namespace css::lang;
 
 namespace sc_apitest
 {
diff --git a/sc/qa/extras/sccheck_data_pilot_table.cxx 
b/sc/qa/extras/sccheck_data_pilot_table.cxx
index 92494fb5833f..1f60ab72d191 100644
--- a/sc/qa/extras/sccheck_data_pilot_table.cxx
+++ b/sc/qa/extras/sccheck_data_pilot_table.cxx
@@ -27,7 +27,6 @@
 //check the DataPilot of Calc.
 
 using namespace css;
-using namespace css::lang;
 
 namespace sc_apitest
 {
diff --git a/sc/qa/extras/sccheck_xcell_ranges_query.cxx 
b/sc/qa/extras/sccheck_xcell_ranges_query.cxx
index f0de7f7deff7..d5e9a5c8905f 100644
--- a/sc/qa/extras/sccheck_xcell_ranges_query.cxx
+++ b/sc/qa/extras/sccheck_xcell_ranges_query.cxx
@@ -17,7 +17,6 @@
 #include 
 
 using namespace css;
-using namespace css::lang;
 
 namespace sc_apitest
 {
diff --git a/sc/qa/unit/dataproviders_test.cxx 
b/sc/qa/unit/dataproviders_test.cxx
index 5b1aa76b95ed..7de2e4597262 100644
--- a/sc/qa/unit/dataproviders_test.cxx
+++ b/sc/qa/unit/dataproviders_test.cxx
@@ -19,7 +19,6 @@
 #include 
 
 using namespace ::com::sun::star;
-using namespace ::com::sun::star::uno;
 
 class ScDataProvidersTest : public ScModelTestBase
 {
diff --git a/sc/qa/unit/filters-test.cxx b/sc/qa/unit/filters-test.cxx
index 671f9760d197..4c8661822c4a 100644
--- a/sc/qa/unit/filters-test.cxx
+++ b/sc/qa/unit/filters-test.cxx
@@ -23,7 +23,6 @@
 #include 
 
 using namespace ::com::sun::star;
-using namespace ::com::sun::star::uno;
 
 /* Implementation of Filters test */
 
diff --git a/sc/qa/unit/helper/debughelper.hxx 
b/sc/qa/unit/helper/debughelper.hxx
index 56e9f075f933..2a16d532128a 100644
--- a/sc/qa/unit/helper/debughelper.hxx
+++ b/sc/qa/unit/helper/debughelper.hxx
@@ -24,6 +24,4 @@
 
 #include 
 
-using namespace ::com::sun::star;
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/qa/unit/opencl-test-1.cxx b/sc/qa/unit/opencl-test-1.cxx
index 03b4b27230e8..0c450d521120 100644
--- a/sc/qa/unit/opencl-test-1.cxx
+++ b/sc/qa/unit/opencl-test-1.cxx
@@ -8,7 +8,6 @@
 #include 
 
 using namespace 

core.git: scripting/source

2024-04-09 Thread Gabor Kelemen (via logerrit)
 scripting/source/basprov/baslibnode.cxx  |1 -
 scripting/source/dlgprov/DialogModelProvider.cxx |2 --
 2 files changed, 3 deletions(-)

New commits:
commit 098f366895d2b224ddcd791d10a2e61fbc5fae94
Author: Gabor Kelemen 
AuthorDate: Sun Mar 31 20:48:52 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Tue Apr 9 18:53:50 2024 +0200

tdf#146619 Drop unused 'using namespace' in: scripting/

Change-Id: I84194df451ea990c515ae914741078c80e53e45b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165694
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/scripting/source/basprov/baslibnode.cxx 
b/scripting/source/basprov/baslibnode.cxx
index 566883757b48..72d464f5caf0 100644
--- a/scripting/source/basprov/baslibnode.cxx
+++ b/scripting/source/basprov/baslibnode.cxx
@@ -28,7 +28,6 @@
 
 
 using namespace ::com::sun::star;
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::script;
 
diff --git a/scripting/source/dlgprov/DialogModelProvider.cxx 
b/scripting/source/dlgprov/DialogModelProvider.cxx
index e49ed058d475..ceb46f53c103 100644
--- a/scripting/source/dlgprov/DialogModelProvider.cxx
+++ b/scripting/source/dlgprov/DialogModelProvider.cxx
@@ -28,10 +28,8 @@
 namespace dlgprov {
 
 using namespace ::com::sun::star;
-using namespace awt;
 using namespace lang;
 using namespace uno;
-using namespace script;
 using namespace beans;
 
 


core.git: 2 commits - bin/find-unneeded-includes starmath/qa starmath/source

2024-04-09 Thread Gabor Kelemen (via logerrit)
 bin/find-unneeded-includes  |2 +-
 starmath/qa/cppunit/test_cursor.cxx |2 --
 starmath/qa/cppunit/test_nodetotextvisitors.cxx |2 --
 starmath/qa/cppunit/test_parse.cxx  |2 --
 starmath/source/edit.cxx|1 -
 starmath/source/mathml/import.cxx   |1 -
 starmath/source/mathml/mathmlimport.cxx |1 -
 7 files changed, 1 insertion(+), 10 deletions(-)

New commits:
commit ff9373bd7271f37fd4cc8c35987a2477c5913b22
Author: Gabor Kelemen 
AuthorDate: Sun Mar 31 20:47:39 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Tue Apr 9 18:53:23 2024 +0200

tdf#146619 Drop unused 'using namespace' in: starmath/

Change-Id: I382ca117484b0928580f4bed765799e915e7b8a2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165693
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/starmath/qa/cppunit/test_cursor.cxx 
b/starmath/qa/cppunit/test_cursor.cxx
index 002a445745c9..89d4e6fe9a8e 100644
--- a/starmath/qa/cppunit/test_cursor.cxx
+++ b/starmath/qa/cppunit/test_cursor.cxx
@@ -23,8 +23,6 @@
 
 typedef rtl::Reference SmDocShellRef;
 
-using namespace ::com::sun::star;
-
 namespace
 {
 class Test : public test::BootstrapFixture
diff --git a/starmath/qa/cppunit/test_nodetotextvisitors.cxx 
b/starmath/qa/cppunit/test_nodetotextvisitors.cxx
index d4981445d8bb..0fbcfa1a81a1 100644
--- a/starmath/qa/cppunit/test_nodetotextvisitors.cxx
+++ b/starmath/qa/cppunit/test_nodetotextvisitors.cxx
@@ -25,8 +25,6 @@
 
 typedef rtl::Reference SmDocShellRef;
 
-using namespace ::com::sun::star;
-
 namespace
 {
 class Test : public test::BootstrapFixture
diff --git a/starmath/qa/cppunit/test_parse.cxx 
b/starmath/qa/cppunit/test_parse.cxx
index cb158a15491d..2e240c04a2ac 100644
--- a/starmath/qa/cppunit/test_parse.cxx
+++ b/starmath/qa/cppunit/test_parse.cxx
@@ -21,8 +21,6 @@
 
 namespace {
 
-using namespace ::com::sun::star;
-
 typedef rtl::Reference SmDocShellRef;
 
 class ParseTest : public test::BootstrapFixture
diff --git a/starmath/source/edit.cxx b/starmath/source/edit.cxx
index f36634a16b14..464498262b2f 100644
--- a/starmath/source/edit.cxx
+++ b/starmath/source/edit.cxx
@@ -42,7 +42,6 @@
 #include 
 #include 
 
-using namespace com::sun::star::accessibility;
 using namespace com::sun::star;
 
 
diff --git a/starmath/source/mathml/import.cxx 
b/starmath/source/mathml/import.cxx
index d857e56930d6..31d92a355cc7 100644
--- a/starmath/source/mathml/import.cxx
+++ b/starmath/source/mathml/import.cxx
@@ -58,7 +58,6 @@
 
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::beans;
-using namespace ::com::sun::star::container;
 using namespace ::com::sun::star::document;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::uno;
diff --git a/starmath/source/mathml/mathmlimport.cxx 
b/starmath/source/mathml/mathmlimport.cxx
index 7bc3e5b913e3..d6a9b8d10ad8 100644
--- a/starmath/source/mathml/mathmlimport.cxx
+++ b/starmath/source/mathml/mathmlimport.cxx
@@ -74,7 +74,6 @@ one go*/
 #include 
 
 using namespace ::com::sun::star::beans;
-using namespace ::com::sun::star::container;
 using namespace ::com::sun::star::document;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::uno;
commit 6f10dc11015ed1640b847e7f0c0be5498b777c5b
Author: Gabor Kelemen 
AuthorDate: Mon Apr 1 10:41:39 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Tue Apr 9 18:53:11 2024 +0200

find-unneeded-includes: improve grepping for namespaces

for example this was not found:

extensions/source/update/check/updatecheck.cxx:58:namespace frame = 
com::sun::star::frame ;

due to the missing using and the space before the semicolon
but IWYU correctly detected it as unused

Change-Id: I404c93d41aec1a571c9ac49db7b7c7e8da824bf6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165698
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/bin/find-unneeded-includes b/bin/find-unneeded-includes
index 99c77b654d3e..718ee67a2561 100755
--- a/bin/find-unneeded-includes
+++ b/bin/find-unneeded-includes
@@ -392,7 +392,7 @@ def processIWYUOutput(iwyuOutput, moduleRules, fileName, 
noexclude, checknamespa
 print("WARNING:", fileName, "This 'using namespace' is 
likely unnecessary:", nameSpace)
 
 # Get the row number, normal IWYU output does not contain 
this info
-subprocess.run(["git", "grep", "-n", "using 
namespace.*"+nameSpace+";", fileName])
+subprocess.run(["git", "grep", "-n", 
"namespace.*[^a-zA-Z]"+nameSpace+" *;", fileName])
 
 for remove in sorted(toRemove):
 print("ERROR: %s: remove not needed include" % remove)


core.git: reportdesign/source

2024-04-09 Thread Gabor Kelemen (via logerrit)
 reportdesign/source/core/api/services.cxx |1 -
 reportdesign/source/core/sdr/UndoActions.cxx  |2 --
 reportdesign/source/core/sdr/UndoEnv.cxx  |2 --
 reportdesign/source/filter/xml/xmlAutoStyle.cxx   |1 -
 reportdesign/source/filter/xml/xmlCell.cxx|1 +
 reportdesign/source/filter/xml/xmlComponent.cxx   |1 -
 reportdesign/source/filter/xml/xmlCondPrtExpr.cxx |1 -
 reportdesign/source/filter/xml/xmlExport.cxx  |1 -
 reportdesign/source/filter/xml/xmlExport.hxx  |4 
 reportdesign/source/filter/xml/xmlFixedContent.cxx|2 ++
 reportdesign/source/filter/xml/xmlFormatCondition.cxx |1 -
 reportdesign/source/filter/xml/xmlHelper.cxx  |1 -
 reportdesign/source/filter/xml/xmlPropertyHandler.cxx |4 
 reportdesign/source/filter/xml/xmlfilter.cxx  |1 -
 reportdesign/source/filter/xml/xmlfilter.hxx  |5 -
 reportdesign/source/ui/dlg/AddField.cxx   |1 -
 reportdesign/source/ui/dlg/DateTime.cxx   |1 -
 reportdesign/source/ui/dlg/Navigator.cxx  |1 -
 reportdesign/source/ui/misc/RptUndo.cxx   |2 --
 reportdesign/source/ui/misc/UITools.cxx   |1 -
 reportdesign/source/ui/report/DesignView.cxx  |3 ---
 reportdesign/source/ui/report/ReportController.cxx|1 -
 reportdesign/source/ui/report/ViewsWindow.cxx |1 -
 23 files changed, 3 insertions(+), 36 deletions(-)

New commits:
commit a919a0aa4c434c906aa0301d842b1234bf287a9d
Author: Gabor Kelemen 
AuthorDate: Sun Mar 31 14:00:06 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Tue Apr 9 18:52:56 2024 +0200

tdf#146619 Drop unused 'using namespace' in: reportdesign/

Change-Id: Iaf246112014d5b5da751570ca55a179232a1e9d4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165692
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/reportdesign/source/core/api/services.cxx 
b/reportdesign/source/core/api/services.cxx
index de07c51e8c22..1f0a0a6f2fe8 100644
--- a/reportdesign/source/core/api/services.cxx
+++ b/reportdesign/source/core/api/services.cxx
@@ -32,7 +32,6 @@
 
//
 
 using namespace ::reportdesign;
-using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::registry;
 
diff --git a/reportdesign/source/core/sdr/UndoActions.cxx 
b/reportdesign/source/core/sdr/UndoActions.cxx
index a63161a1b977..5aaa412cf1ff 100644
--- a/reportdesign/source/core/sdr/UndoActions.cxx
+++ b/reportdesign/source/core/sdr/UndoActions.cxx
@@ -36,10 +36,8 @@ namespace rptui
 using namespace ::com::sun::star;
 using namespace uno;
 using namespace lang;
-using namespace script;
 using namespace beans;
 using namespace awt;
-using namespace util;
 using namespace container;
 using namespace report;
 
diff --git a/reportdesign/source/core/sdr/UndoEnv.cxx 
b/reportdesign/source/core/sdr/UndoEnv.cxx
index bba8d5ae91f1..a2cdddafbdae 100644
--- a/reportdesign/source/core/sdr/UndoEnv.cxx
+++ b/reportdesign/source/core/sdr/UndoEnv.cxx
@@ -45,9 +45,7 @@ namespace rptui
 using namespace ::com::sun::star;
 using namespace uno;
 using namespace lang;
-using namespace script;
 using namespace beans;
-using namespace awt;
 using namespace util;
 using namespace container;
 using namespace report;
diff --git a/reportdesign/source/filter/xml/xmlAutoStyle.cxx 
b/reportdesign/source/filter/xml/xmlAutoStyle.cxx
index d292b84bd4be..cceb85a45b5f 100644
--- a/reportdesign/source/filter/xml/xmlAutoStyle.cxx
+++ b/reportdesign/source/filter/xml/xmlAutoStyle.cxx
@@ -24,7 +24,6 @@
 namespace rptxml
 {
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::xml::sax;
 
 void OXMLAutoStylePoolP::exportStyleAttributes(
 comphelper::AttributeList& rAttrList,
diff --git a/reportdesign/source/filter/xml/xmlCell.cxx 
b/reportdesign/source/filter/xml/xmlCell.cxx
index c504204db7f8..3d34a8c241a6 100644
--- a/reportdesign/source/filter/xml/xmlCell.cxx
+++ b/reportdesign/source/filter/xml/xmlCell.cxx
@@ -44,6 +44,7 @@ namespace rptxml
 using namespace ::com::sun::star;
 using namespace uno;
 using namespace beans;
+using namespace lang;
 using namespace xml::sax;
 
 
diff --git a/reportdesign/source/filter/xml/xmlComponent.cxx 
b/reportdesign/source/filter/xml/xmlComponent.cxx
index 896d8b2ab324..0e17dff666d4 100644
--- a/reportdesign/source/filter/xml/xmlComponent.cxx
+++ b/reportdesign/source/filter/xml/xmlComponent.cxx
@@ -27,7 +27,6 @@ namespace rptxml
 {
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::report;
 using namespace 

core.git: bin/find-unneeded-includes

2024-04-09 Thread Gabor Kelemen (via logerrit)
 bin/find-unneeded-includes |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 83f1a6f8172ab5688bb3e3883e33ed8295d3f5b7
Author: Gabor Kelemen 
AuthorDate: Mon Apr 1 10:37:45 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Tue Apr 9 10:43:59 2024 +0200

find-unneeded-includes: improve list of namespaces

Add 'star' for com::sun::star instances

Add some vcl-specific ones

'PackageKit' gave always a false warning due to the similarity in
org/freedesktop/PackageKit/*hpp
and
officecfg::Office::Common::PackageKit::*

Change-Id: I109e7a2e8d7588d62b2a6bec2e55ec32e993e49e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165697
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/bin/find-unneeded-includes b/bin/find-unneeded-includes
index 509331cd5ff3..99c77b654d3e 100755
--- a/bin/find-unneeded-includes
+++ b/bin/find-unneeded-includes
@@ -342,7 +342,6 @@ def processIWYUOutput(iwyuOutput, moduleRules, fileName, 
noexclude, checknamespa
 'oox|core|drawingml|ole|vml|'
 'OpenStormBento|'
 'osl|'
-'PackageKit|'
 'pdfi|pdfparse|'
 'ppt|'
 'pyuno|'
@@ -359,6 +358,7 @@ def processIWYUOutput(iwyuOutput, moduleRules, fileName, 
noexclude, checknamespa
 'sfx2|DocTempl|'
 'sidebar|' # for sfx2::sidebar
 'skeletonmaker|'
+'star|' # for com::sun::star
 'std|chrono_literals|literals|'
 'stoc_sec|'
 'store|'
@@ -374,7 +374,7 @@ def processIWYUOutput(iwyuOutput, moduleRules, fileName, 
noexclude, checknamespa
 'unopkg|'
 'util|db|qe|' # for xmlsearch::
 'utl|'
-'vcl|'
+'vcl|psp|x11|'
 'writerfilter|'
 'xforms|'
 'xmloff|token|EnhancedCustomShapeToken' # 
for xmloff::


core.git: xmlsecurity/source

2024-04-09 Thread Gabor Kelemen (via logerrit)
 xmlsecurity/source/gpg/CipherContext.cxx |1 -
 xmlsecurity/source/gpg/DigestContext.cxx |1 -
 xmlsecurity/source/gpg/XMLEncryption.cxx |1 -
 3 files changed, 3 deletions(-)

New commits:
commit 4aa43e62e45d418540e352370215c199d97cdfe7
Author: Gabor Kelemen 
AuthorDate: Sun Mar 31 09:40:03 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Tue Apr 9 10:43:32 2024 +0200

tdf#146619 Drop unused 'using namespace' in: xmlsecurity/

Change-Id: I95b84eff5d8bb288aa704620db328d89062efdf4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165689
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/xmlsecurity/source/gpg/CipherContext.cxx 
b/xmlsecurity/source/gpg/CipherContext.cxx
index 291db0ba66c8..b7f81bc9ee3e 100644
--- a/xmlsecurity/source/gpg/CipherContext.cxx
+++ b/xmlsecurity/source/gpg/CipherContext.cxx
@@ -11,7 +11,6 @@
 
 using namespace css;
 using namespace css::uno;
-using namespace css::lang;
 
 Sequence
 SAL_CALL CipherContext::convertWithCipherContext(const Sequence& 
/*aData*/)
diff --git a/xmlsecurity/source/gpg/DigestContext.cxx 
b/xmlsecurity/source/gpg/DigestContext.cxx
index 4864191bb85e..79ff98710691 100644
--- a/xmlsecurity/source/gpg/DigestContext.cxx
+++ b/xmlsecurity/source/gpg/DigestContext.cxx
@@ -11,7 +11,6 @@
 
 using namespace css;
 using namespace css::uno;
-using namespace css::lang;
 
 void SAL_CALL DigestContext::updateDigest(const Sequence& /*aData*/) 
{}
 
diff --git a/xmlsecurity/source/gpg/XMLEncryption.cxx 
b/xmlsecurity/source/gpg/XMLEncryption.cxx
index 65083ff68bac..98f7aa6dc46d 100644
--- a/xmlsecurity/source/gpg/XMLEncryption.cxx
+++ b/xmlsecurity/source/gpg/XMLEncryption.cxx
@@ -11,7 +11,6 @@
 
 using namespace css::uno;
 using namespace css::lang;
-using namespace css::xml::wrapper;
 using namespace css::xml::crypto;
 
 XMLEncryptionGpg::XMLEncryptionGpg() {


core.git: chart2/source

2024-04-09 Thread Gabor Kelemen (via logerrit)
 chart2/source/controller/chartapiwrapper/GridWrapper.cxx   |1 -
 chart2/source/controller/chartapiwrapper/MinMaxLineWrapper.cxx |1 -
 chart2/source/controller/chartapiwrapper/UpDownBarWrapper.cxx  |1 -
 chart2/source/controller/chartapiwrapper/WallFloorWrapper.cxx  |1 -
 chart2/source/controller/dialogs/TitleDialogData.cxx   |1 -
 chart2/source/controller/dialogs/dlg_ChartType.cxx |1 -
 chart2/source/controller/dialogs/dlg_DataSource.cxx|1 -
 chart2/source/controller/dialogs/dlg_View3D.cxx|1 -
 chart2/source/controller/main/ChartController_Position.cxx |1 -
 chart2/source/inc/ChartResourceGroups.hxx  |1 -
 chart2/source/model/main/ChartModel.cxx|1 -
 chart2/source/model/template/ColumnLineChartTypeTemplate.cxx   |1 -
 chart2/source/model/template/FilledNetChartType.cxx|1 -
 chart2/source/model/template/StockChartTypeTemplate.cxx|1 -
 chart2/source/tools/ColorPerPointHelper.cxx|1 -
 chart2/source/view/axes/VPolarAngleAxis.cxx|1 -
 chart2/source/view/axes/VPolarAxis.cxx |1 -
 chart2/source/view/axes/VPolarCoordinateSystem.cxx |1 -
 chart2/source/view/charttypes/BarPositionHelper.cxx|1 -
 chart2/source/view/charttypes/BubbleChart.cxx  |1 -
 chart2/source/view/charttypes/CandleStickChart.cxx |1 -
 chart2/source/view/main/LabelPositionHelper.cxx|1 -
 chart2/source/view/main/PlotterBase.cxx|1 -
 chart2/source/view/main/PolarLabelPositionHelper.cxx   |1 -
 24 files changed, 24 deletions(-)

New commits:
commit 6e1647699fb7de69b7b14498dbc9b133c24508d4
Author: Gabor Kelemen 
AuthorDate: Sat Mar 30 21:25:06 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Tue Apr 9 10:43:12 2024 +0200

tdf#146619 Drop unused 'using namespace' in: chart2/

Change-Id: I632d0dda0e62e5b1bf0956e731ab5ed6417db1ad
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165688
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/chart2/source/controller/chartapiwrapper/GridWrapper.cxx 
b/chart2/source/controller/chartapiwrapper/GridWrapper.cxx
index 8a9f4267e785..5f75aa686a69 100644
--- a/chart2/source/controller/chartapiwrapper/GridWrapper.cxx
+++ b/chart2/source/controller/chartapiwrapper/GridWrapper.cxx
@@ -34,7 +34,6 @@
 #include 
 
 using namespace ::com::sun::star;
-using namespace ::com::sun::star::chart2;
 
 using ::com::sun::star::beans::Property;
 using ::com::sun::star::uno::Reference;
diff --git a/chart2/source/controller/chartapiwrapper/MinMaxLineWrapper.cxx 
b/chart2/source/controller/chartapiwrapper/MinMaxLineWrapper.cxx
index 4f98fa5923f2..d0cb5eab6552 100644
--- a/chart2/source/controller/chartapiwrapper/MinMaxLineWrapper.cxx
+++ b/chart2/source/controller/chartapiwrapper/MinMaxLineWrapper.cxx
@@ -32,7 +32,6 @@
 #include 
 
 using namespace ::com::sun::star;
-using namespace ::com::sun::star::chart2;
 
 using ::com::sun::star::beans::Property;
 using ::com::sun::star::uno::Reference;
diff --git a/chart2/source/controller/chartapiwrapper/UpDownBarWrapper.cxx 
b/chart2/source/controller/chartapiwrapper/UpDownBarWrapper.cxx
index 9fa2e5132168..c63090d81ac8 100644
--- a/chart2/source/controller/chartapiwrapper/UpDownBarWrapper.cxx
+++ b/chart2/source/controller/chartapiwrapper/UpDownBarWrapper.cxx
@@ -32,7 +32,6 @@
 #include 
 
 using namespace ::com::sun::star;
-using namespace ::com::sun::star::chart2;
 
 using ::com::sun::star::beans::Property;
 using ::com::sun::star::uno::Reference;
diff --git a/chart2/source/controller/chartapiwrapper/WallFloorWrapper.cxx 
b/chart2/source/controller/chartapiwrapper/WallFloorWrapper.cxx
index dc5742aef63b..9c8a6f61afb0 100644
--- a/chart2/source/controller/chartapiwrapper/WallFloorWrapper.cxx
+++ b/chart2/source/controller/chartapiwrapper/WallFloorWrapper.cxx
@@ -31,7 +31,6 @@
 #include 
 
 using namespace ::com::sun::star;
-using namespace ::com::sun::star::chart2;
 
 using ::com::sun::star::beans::Property;
 using ::com::sun::star::uno::Reference;
diff --git a/chart2/source/controller/dialogs/TitleDialogData.cxx 
b/chart2/source/controller/dialogs/TitleDialogData.cxx
index b8f3ed6d9429..75d59bbb43b4 100644
--- a/chart2/source/controller/dialogs/TitleDialogData.cxx
+++ b/chart2/source/controller/dialogs/TitleDialogData.cxx
@@ -28,7 +28,6 @@
 namespace chart
 {
 using namespace ::com::sun::star;
-using namespace ::com::sun::star::chart2;
 
 TitleDialogData::TitleDialogData( std::optional 
pRefSizeProvider )
 : aPossibilityList{ true, true, true, true, true, true, true }
diff --git a/chart2/source/controller/dialogs/dlg_ChartType.cxx 
b/chart2/source/controller/dialogs/dlg_ChartType.cxx
index e6e88dae42b8..a1f52f5169a5 100644
--- 

core.git: forms/source

2024-04-09 Thread Gabor Kelemen (via logerrit)
 forms/source/component/CheckBox.cxx   |2 +-
 forms/source/component/Date.cxx   |2 +-
 forms/source/component/FormattedField.cxx |2 +-
 forms/source/component/ImageButton.cxx|2 +-
 forms/source/component/ImageControl.cxx   |4 ++--
 forms/source/component/Numeric.cxx|2 +-
 forms/source/component/Pattern.cxx|2 +-
 forms/source/component/RadioButton.cxx|2 +-
 8 files changed, 9 insertions(+), 9 deletions(-)

New commits:
commit 4c1d626d7265b0bfce709e41e62d7c789022ef6d
Author: Gabor Kelemen 
AuthorDate: Sun Mar 31 11:33:43 2024 +0200
Commit: Gabor Kelemen 
CommitDate: Tue Apr 9 08:46:04 2024 +0200

Fix typo: compytibility

Change-Id: I989d0a9510e6a3691a4c1ba89dd3f04e62906292
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165691
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/forms/source/component/CheckBox.cxx 
b/forms/source/component/CheckBox.cxx
index 064a156b1a95..ff3f2058ffcc 100644
--- a/forms/source/component/CheckBox.cxx
+++ b/forms/source/component/CheckBox.cxx
@@ -57,7 +57,7 @@ css::uno::Sequence SAL_CALL 
OCheckBoxControl::getSupportedServiceNames
 
 OCheckBoxModel::OCheckBoxModel(const Reference& _rxFactory)
 :OReferenceValueComponent( _rxFactory, VCL_CONTROLMODEL_CHECKBOX, 
FRM_SUN_CONTROL_CHECKBOX )
-// use the old control name for compytibility reasons
+// use the old control name for compatibility reasons
 {
 
 m_nClassId = FormComponentType::CHECKBOX;
diff --git a/forms/source/component/Date.cxx b/forms/source/component/Date.cxx
index acae4629b168..a349cd064cd1 100644
--- a/forms/source/component/Date.cxx
+++ b/forms/source/component/Date.cxx
@@ -69,7 +69,7 @@ Sequence ODateModel::_getTypes()
 ODateModel::ODateModel(const Reference& _rxFactory)
 : OEditBaseModel(_rxFactory, VCL_CONTROLMODEL_DATEFIELD,
 FRM_SUN_CONTROL_DATEFIELD, true, true)
-// use the old control name for compytibility reasons
+// use the old control name for compatibility reasons
 , OLimitedFormats(_rxFactory, FormComponentType::DATEFIELD)
 , m_bDateTimeField(false)
 {
diff --git a/forms/source/component/FormattedField.cxx 
b/forms/source/component/FormattedField.cxx
index ad89f38706ca..fa1fdb216b2b 100644
--- a/forms/source/component/FormattedField.cxx
+++ b/forms/source/component/FormattedField.cxx
@@ -266,7 +266,7 @@ void OFormattedModel::implConstruct()
 }
 OFormattedModel::OFormattedModel(const Reference& 
_rxFactory)
 :OEditBaseModel(_rxFactory, VCL_CONTROLMODEL_FORMATTEDFIELD, 
FRM_SUN_CONTROL_FORMATTEDFIELD, true, true )
-// use the old control name for compytibility reasons
+// use the old control name for compatibility reasons
 ,OErrorBroadcaster( OComponentHelper::rBHelper )
 {
 implConstruct();
diff --git a/forms/source/component/ImageButton.cxx 
b/forms/source/component/ImageButton.cxx
index 8d42232a8423..1dd66ca0dbdc 100644
--- a/forms/source/component/ImageButton.cxx
+++ b/forms/source/component/ImageButton.cxx
@@ -45,7 +45,7 @@ using namespace ::com::sun::star::util;
 // OImageButtonModel
 OImageButtonModel::OImageButtonModel(const Reference& 
_rxFactory)
 :OClickableImageBaseModel( _rxFactory, 
VCL_CONTROLMODEL_IMAGEBUTTON, FRM_SUN_CONTROL_IMAGEBUTTON )
-// use the old control name for compytibility reasons
+// use the old control name for compatibility reasons
 {
 m_nClassId = FormComponentType::IMAGEBUTTON;
 }
diff --git a/forms/source/component/ImageControl.cxx 
b/forms/source/component/ImageControl.cxx
index 0a2de4a63deb..0f48eecf5496 100644
--- a/forms/source/component/ImageControl.cxx
+++ b/forms/source/component/ImageControl.cxx
@@ -129,7 +129,7 @@ Sequence OImageControlModel::_getTypes()
 
 OImageControlModel::OImageControlModel(const Reference& 
_rxFactory)
 :OBoundControlModel( _rxFactory, VCL_CONTROLMODEL_IMAGECONTROL, 
FRM_SUN_CONTROL_IMAGECONTROL, false, false, false )
-// use the old control name for compytibility reasons
+// use the old control name for compatibility reasons
 ,m_bExternalGraphic( true )
 ,m_bReadOnly( false )
 {
@@ -142,7 +142,7 @@ OImageControlModel::OImageControlModel(const 
Reference& _rxFa
 
 OImageControlModel::OImageControlModel( const OImageControlModel* _pOriginal, 
const Reference< XComponentContext >& _rxFactory )
 :OBoundControlModel( _pOriginal, _rxFactory )
-// use the old control name for compytibility reasons
+// use the old control name for compatibility reasons
 ,m_bExternalGraphic( true )
 ,m_bReadOnly( _pOriginal->m_bReadOnly )
 ,m_sImageURL( _pOriginal->m_sImageURL )
diff --git a/forms/source/component/Numeric.cxx 
b/forms/source/component/Numeric.cxx
index e0fdaa70dab6..b3465d7c940c 100644
--- a/forms/source/component/Numeric.cxx
+++ b/forms/source/component/Numeric.cxx
@@ -56,7 +56,7 @@ css::uno::Sequence 

core.git: oox/source

2024-04-09 Thread Gabor Kelemen (via logerrit)
 oox/source/core/filterbase.cxx   |1 -
 oox/source/core/xmlfilterbase.cxx|1 -
 oox/source/drawingml/chart/chartspaceconverter.cxx   |1 -
 oox/source/drawingml/chart/objectformatter.cxx   |1 -
 oox/source/drawingml/chart/titleconverter.cxx|1 -
 oox/source/drawingml/clrschemecontext.cxx|2 --
 oox/source/drawingml/connectorshapecontext.cxx   |4 
 oox/source/drawingml/diagram/constraintlistcontext.cxx   |2 --
 oox/source/drawingml/diagram/datamodelcontext.cxx|1 -
 oox/source/drawingml/diagram/diagramdefinitioncontext.cxx|2 --
 oox/source/drawingml/diagram/diagramfragmenthandler.cxx  |2 --
 oox/source/drawingml/diagram/layoutatomvisitorbase.cxx   |1 -
 oox/source/drawingml/diagram/layoutatomvisitors.cxx  |2 --
 oox/source/drawingml/diagram/layoutnodecontext.cxx   |2 --
 oox/source/drawingml/effectpropertiescontext.cxx |1 -
 oox/source/drawingml/graphicshapecontext.cxx |3 ---
 oox/source/drawingml/guidcontext.cxx |2 --
 oox/source/drawingml/hyperlinkcontext.cxx|2 --
 oox/source/drawingml/linepropertiescontext.cxx   |2 --
 oox/source/drawingml/misccontexts.cxx|1 -
 oox/source/drawingml/objectdefaultcontext.cxx|2 --
 oox/source/drawingml/scene3dcontext.cxx  |2 --
 oox/source/drawingml/shape3dproperties.cxx   |2 --
 oox/source/drawingml/shapecontext.cxx|4 
 oox/source/drawingml/shapegroupcontext.cxx   |3 ---
 oox/source/drawingml/shapepropertiescontext.cxx  |2 --
 oox/source/drawingml/shapestylecontext.cxx   |2 --
 oox/source/drawingml/spdefcontext.cxx|1 -
 oox/source/drawingml/table/tablebackgroundstylecontext.cxx   |1 -
 oox/source/drawingml/table/tablepartstylecontext.cxx |2 --
 oox/source/drawingml/table/tablerow.cxx  |3 ---
 oox/source/drawingml/table/tablestylecellstylecontext.cxx|1 -
 oox/source/drawingml/table/tablestylecontext.cxx |2 --
 oox/source/drawingml/table/tablestylelistfragmenthandler.cxx |1 -
 oox/source/drawingml/table/tablestylepart.cxx|1 -
 oox/source/drawingml/table/tablestyletextstylecontext.cxx|2 --
 oox/source/drawingml/textbodypropertiescontext.cxx   |1 -
 oox/source/drawingml/textcharacterpropertiescontext.cxx  |2 --
 oox/source/drawingml/textfieldcontext.cxx|2 --
 oox/source/drawingml/textliststylecontext.cxx|2 --
 oox/source/drawingml/textspacingcontext.cxx  |1 -
 oox/source/drawingml/texttabstoplistcontext.cxx  |1 -
 oox/source/drawingml/themeelementscontext.cxx|1 -
 oox/source/dump/dumperbase.cxx   |2 --
 oox/source/export/shapes.cxx |1 -
 oox/source/helper/containerhelper.cxx|1 -
 oox/source/helper/graphichelper.cxx  |1 -
 oox/source/helper/zipstorage.cxx |1 -
 oox/source/ole/vbahelper.cxx |2 --
 oox/source/ole/vbamodule.cxx |1 -
 oox/source/ppt/animationtypes.cxx|1 -
 oox/source/ppt/animvariantcontext.cxx|1 -
 oox/source/ppt/backgroundproperties.cxx  |2 --
 oox/source/ppt/extdrawingfragmenthandler.cxx |2 --
 oox/source/ppt/headerfootercontext.cxx   |2 --
 oox/source/ppt/layoutfragmenthandler.cxx |3 ---
 oox/source/ppt/pptgraphicshapecontext.cxx|1 -
 oox/source/ppt/pptshapecontext.cxx   |1 -
 oox/source/ppt/pptshapegroupcontext.cxx  |2 --
 oox/source/ppt/pptshapepropertiescontext.cxx |1 -
 oox/source/ppt/slidemastertextstylescontext.cxx  |1 -
 oox/source/ppt/slidetimingcontext.cxx|4 
 oox/source/ppt/slidetransitioncontext.cxx|3 ---
 oox/source/ppt/soundactioncontext.cxx|1 -
 oox/source/ppt/timeanimvaluecontext.cxx  |2 --
 oox/source/ppt/timenodelistcontext.cxx   |1 -
 oox/source/ppt/timetargetelementcontext.cxx  |1 -
 67 files changed, 113 deletions(-)

New commits:
commit 9a4eead9958d887d37a5c9bab9465cc6ddd0b213
Author: Gabor Kelemen 
AuthorDate: Sun Mar 31 11:30:14 2024 +0200
Commit: Gabor Kelemen 

core.git: cui/source

2024-04-08 Thread Gabor Kelemen (via logerrit)
 cui/source/options/treeopt.cxx |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 3b50600e8f817409f5a21249871d9f82728e4987
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 22:20:08 2024 +0100
Commit: Thorsten Behrens 
CommitDate: Tue Apr 9 07:45:39 2024 +0200

Use some nicer assert string

Change-Id: I49b5950a63b7c1decb07f3093e8962fc3eada0bc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165569
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/cui/source/options/treeopt.cxx b/cui/source/options/treeopt.cxx
index 5fe43e57f6ab..6ab767bb8044 100644
--- a/cui/source/options/treeopt.cxx
+++ b/cui/source/options/treeopt.cxx
@@ -1841,7 +1841,7 @@ void OfaTreeOptionsDialog::writerOptions(const 
std::vector& vPageId)
 sal_uInt16 nPageId = 0;
 
 OUString aFactory = getCurrentFactory_Impl( m_xFrame );
-DBG_ASSERT( GetModuleIdentifier( m_xFrame ) == aFactory, "S H I T!!!" );
+DBG_ASSERT( GetModuleIdentifier( m_xFrame ) == aFactory, "This should not 
happen" );
 
 SvtModuleOptions aModuleOpt;
 if ( aModuleOpt.IsModuleInstalled( SvtModuleOptions::EModule::WRITER ) )
@@ -1901,7 +1901,7 @@ void OfaTreeOptionsDialog::writerWebOptions(const 
std::vector& vPage
 sal_uInt16 nPageId = 0;
 
 OUString aFactory = getCurrentFactory_Impl( m_xFrame );
-DBG_ASSERT( GetModuleIdentifier( m_xFrame ) == aFactory, "S H I T!!!" );
+DBG_ASSERT( GetModuleIdentifier( m_xFrame ) == aFactory, "This should not 
happen" );
 
 SvtModuleOptions aModuleOpt;
 if ( aModuleOpt.IsModuleInstalled( SvtModuleOptions::EModule::WRITER ) )
@@ -1955,7 +1955,7 @@ void OfaTreeOptionsDialog::calcOptions(const 
std::vector& vPageId)
 sal_uInt16 nPageId = 0;
 
 OUString aFactory = getCurrentFactory_Impl( m_xFrame );
-DBG_ASSERT( GetModuleIdentifier( m_xFrame ) == aFactory, "S H I T!!!" );
+DBG_ASSERT( GetModuleIdentifier( m_xFrame ) == aFactory, "This should not 
happen" );
 
 SvtModuleOptions aModuleOpt;
 // Calc options
@@ -1995,7 +1995,7 @@ void OfaTreeOptionsDialog::impressOptions(const 
std::vector& vPageId
 sal_uInt16 nPageId = 0;
 
 OUString aFactory = getCurrentFactory_Impl( m_xFrame );
-DBG_ASSERT( GetModuleIdentifier( m_xFrame ) == aFactory, "S H I T!!!" );
+DBG_ASSERT( GetModuleIdentifier( m_xFrame ) == aFactory, "This should not 
happen" );
 SvtModuleOptions aModuleOpt;
 
 // Impress options
@@ -2035,7 +2035,7 @@ void OfaTreeOptionsDialog::drawOptions(const 
std::vector& vPageId)
 sal_uInt16 nPageId = 0;
 
 OUString aFactory = getCurrentFactory_Impl( m_xFrame );
-DBG_ASSERT( GetModuleIdentifier( m_xFrame ) == aFactory, "S H I T!!!" );
+DBG_ASSERT( GetModuleIdentifier( m_xFrame ) == aFactory, "This should not 
happen" );
 SvtModuleOptions aModuleOpt;
 
 // Draw options
@@ -2076,7 +2076,7 @@ void OfaTreeOptionsDialog::mathOptions(const 
std::vector& vPageId)
 sal_uInt16 nPageId = 0;
 
 OUString aFactory = getCurrentFactory_Impl( m_xFrame );
-DBG_ASSERT( GetModuleIdentifier( m_xFrame ) == aFactory, "S H I T!!!" );
+DBG_ASSERT( GetModuleIdentifier( m_xFrame ) == aFactory, "This should not 
happen" );
 SvtModuleOptions aModuleOpt;
 
 // Math options


core.git: filter/source

2024-04-08 Thread Gabor Kelemen (via logerrit)
 filter/source/odfflatxml/OdfFlatXml.cxx   |2 --
 filter/source/pdf/pdfexport.cxx   |1 -
 filter/source/svg/svgexport.cxx   |2 +-
 filter/source/svg/svgwriter.cxx   |1 +
 filter/source/svg/svgwriter.hxx   |1 -
 filter/source/t602/t602filter.cxx |2 --
 filter/source/xmlfilteradaptor/XmlFilterAdaptor.cxx   |1 -
 filter/source/xsltdialog/xmlfilterdialogcomponent.cxx |2 --
 filter/source/xsltdialog/xmlfiltertabpagexslt.cxx |3 ---
 filter/source/xsltfilter/XSLTFilter.cxx   |1 -
 10 files changed, 2 insertions(+), 14 deletions(-)

New commits:
commit c7362f365b7d4699740729e6bf263e1217577797
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 14:09:58 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Mon Apr 8 15:10:16 2024 +0200

tdf#146619 Drop unused 'using namespace' in: filter/

Change-Id: Id7801c4690b9f095f7f246e8b3a2072c24e6e58c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165544
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/filter/source/odfflatxml/OdfFlatXml.cxx 
b/filter/source/odfflatxml/OdfFlatXml.cxx
index 4c838ab5f40e..755f14ec6be2 100644
--- a/filter/source/odfflatxml/OdfFlatXml.cxx
+++ b/filter/source/odfflatxml/OdfFlatXml.cxx
@@ -38,13 +38,11 @@
 #include 
 
 using namespace ::cppu;
-using namespace ::osl;
 using namespace ::sax;
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::io;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;
-using namespace ::com::sun::star::registry;
 using namespace ::com::sun::star::xml;
 using namespace ::com::sun::star::xml::sax;
 
diff --git a/filter/source/pdf/pdfexport.cxx b/filter/source/pdf/pdfexport.cxx
index a73d122282e1..03ecbf576c56 100644
--- a/filter/source/pdf/pdfexport.cxx
+++ b/filter/source/pdf/pdfexport.cxx
@@ -75,7 +75,6 @@ using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::view;
-using namespace ::com::sun::star::graphic;
 
 
 PDFExport::PDFExport( const Reference< XComponent >& rxSrcDoc,
diff --git a/filter/source/svg/svgexport.cxx b/filter/source/svg/svgexport.cxx
index d2a42321cf02..c6325f282a2e 100644
--- a/filter/source/svg/svgexport.cxx
+++ b/filter/source/svg/svgexport.cxx
@@ -74,7 +74,7 @@
 using namespace css::animations;
 using namespace css::presentation;
 using namespace ::com::sun::star::graphic;
-using namespace ::com::sun::star::geometry;
+using namespace ::com::sun::star::style;
 using namespace ::com::sun::star;
 using namespace ::xmloff::token;
 
diff --git a/filter/source/svg/svgwriter.cxx b/filter/source/svg/svgwriter.cxx
index e2079304abbc..adfdda948f76 100644
--- a/filter/source/svg/svgwriter.cxx
+++ b/filter/source/svg/svgwriter.cxx
@@ -52,6 +52,7 @@
 
 #include 
 
+using namespace ::com::sun::star::style;
 
 constexpr OUString aPrefixClipPathId = u"clip_path_"_ustr;
 
diff --git a/filter/source/svg/svgwriter.hxx b/filter/source/svg/svgwriter.hxx
index 85c931fb1763..1bcf8a87b4c9 100644
--- a/filter/source/svg/svgwriter.hxx
+++ b/filter/source/svg/svgwriter.hxx
@@ -47,7 +47,6 @@ using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::container;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::text;
-using namespace ::com::sun::star::style;
 using namespace ::com::sun::star::svg;
 using namespace ::com::sun::star::xml::sax;
 
diff --git a/filter/source/t602/t602filter.cxx 
b/filter/source/t602/t602filter.cxx
index d97bc3d5e5de..e215b465b925 100644
--- a/filter/source/t602/t602filter.cxx
+++ b/filter/source/t602/t602filter.cxx
@@ -37,11 +37,9 @@
 #include 
 
 using namespace ::cppu;
-using namespace ::osl;
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;
-using namespace ::com::sun::star::registry;
 using namespace ::com::sun::star::container;
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::awt;
diff --git a/filter/source/xmlfilteradaptor/XmlFilterAdaptor.cxx 
b/filter/source/xmlfilteradaptor/XmlFilterAdaptor.cxx
index 525f567b67c0..1f246433a4ae 100644
--- a/filter/source/xmlfilteradaptor/XmlFilterAdaptor.cxx
+++ b/filter/source/xmlfilteradaptor/XmlFilterAdaptor.cxx
@@ -48,7 +48,6 @@
 using namespace comphelper;
 using namespace com::sun::star::uno;
 using namespace com::sun::star::lang;
-using namespace com::sun::star::io;
 using namespace com::sun::star::beans;
 using namespace com::sun::star::container;
 using namespace com::sun::star::document;
diff --git a/filter/source/xsltdialog/xmlfilterdialogcomponent.cxx 
b/filter/source/xsltdialog/xmlfilterdialogcomponent.cxx
index 5cf047d07e41..64b02feb2d78 100644
--- a/filter/source/xsltdialog/xmlfilterdialogcomponent.cxx
+++ 

core.git: 2 commits - editeng/source extensions/source

2024-04-08 Thread Gabor Kelemen (via logerrit)
 editeng/source/editeng/edtspell.cxx  |1 -
 editeng/source/editeng/textconv.cxx  |2 --
 editeng/source/items/xmlcnitm.cxx|1 -
 editeng/source/misc/splwrap.cxx  |1 -
 editeng/source/misc/unolingu.cxx |1 -
 editeng/source/xml/xmltxtexp.cxx |2 --
 editeng/source/xml/xmltxtimp.cxx |2 --
 extensions/source/abpilot/abpfinalpage.cxx   |4 
 extensions/source/abpilot/abspage.cxx|1 -
 extensions/source/abpilot/abspilot.cxx   |1 -
 extensions/source/abpilot/admininvokationimpl.cxx|1 -
 extensions/source/abpilot/unodialogabp.cxx   |1 -
 extensions/source/bibliography/bibconfig.cxx |1 -
 extensions/source/bibliography/bibcont.cxx   |1 -
 extensions/source/bibliography/bibmod.cxx|4 
 extensions/source/bibliography/bibview.cxx   |1 -
 extensions/source/dbpilots/commonpagesdbp.cxx|1 -
 extensions/source/dbpilots/controlwizard.cxx |1 -
 extensions/source/dbpilots/gridwizard.cxx|1 -
 extensions/source/dbpilots/groupboxwiz.cxx   |1 -
 extensions/source/dbpilots/listcombowizard.cxx   |1 -
 extensions/source/propctrlr/MasterDetailLinkDialog.cxx   |1 -
 extensions/source/propctrlr/buttonnavigationhandler.cxx  |3 ---
 extensions/source/propctrlr/cellbindinghandler.cxx   |1 -
 extensions/source/propctrlr/cellbindinghelper.cxx|1 -
 extensions/source/propctrlr/controlfontdialog.cxx|1 -
 extensions/source/propctrlr/editpropertyhandler.cxx  |2 --
 extensions/source/propctrlr/eformspropertyhandler.cxx|1 -
 extensions/source/propctrlr/formcomponenthandler.cxx |1 -
 extensions/source/propctrlr/formlinkdialog.cxx   |1 -
 extensions/source/propctrlr/pcrcommon.cxx|3 ---
 extensions/source/propctrlr/pcrunodialogs.cxx|1 -
 extensions/source/propctrlr/propcontroller.cxx   |2 --
 extensions/source/propctrlr/propertyhandler.cxx  |1 -
 extensions/source/propctrlr/submissionhandler.cxx|2 --
 extensions/source/propctrlr/xsdvalidationpropertyhandler.cxx |2 --
 extensions/source/update/check/updatecheck.cxx   |1 -
 37 files changed, 54 deletions(-)

New commits:
commit 6b4552e325b38748cb75d3df269082fb8a38751a
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 14:06:23 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Mon Apr 8 15:10:01 2024 +0200

tdf#146619 Drop unused 'using namespace' in: editeng/

Change-Id: Ifbad3b15b462a0586eda219f16698d0b42109832
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165535
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/editeng/source/editeng/edtspell.cxx 
b/editeng/source/editeng/edtspell.cxx
index 514e70f93025..b989755d8be4 100644
--- a/editeng/source/editeng/edtspell.cxx
+++ b/editeng/source/editeng/edtspell.cxx
@@ -32,7 +32,6 @@
 #include 
 
 using namespace com::sun::star::uno;
-using namespace com::sun::star::beans;
 using namespace com::sun::star::linguistic2;
 
 
diff --git a/editeng/source/editeng/textconv.cxx 
b/editeng/source/editeng/textconv.cxx
index 0534d3420cc4..3d4c03e1ddeb 100644
--- a/editeng/source/editeng/textconv.cxx
+++ b/editeng/source/editeng/textconv.cxx
@@ -29,8 +29,6 @@
 
 using namespace com::sun::star;
 using namespace com::sun::star::uno;
-using namespace com::sun::star::beans;
-using namespace com::sun::star::linguistic2;
 
 TextConvWrapper::TextConvWrapper( weld::Widget* pWindow,
 const Reference< XComponentContext >& rxContext,
diff --git a/editeng/source/items/xmlcnitm.cxx 
b/editeng/source/items/xmlcnitm.cxx
index 7507ed2afdd0..71f75a910246 100644
--- a/editeng/source/items/xmlcnitm.cxx
+++ b/editeng/source/items/xmlcnitm.cxx
@@ -29,7 +29,6 @@
 
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::container;
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::xml;
 
 
diff --git a/editeng/source/misc/splwrap.cxx b/editeng/source/misc/splwrap.cxx
index dd59113a6975..67c3dc28e64a 100644
--- a/editeng/source/misc/splwrap.cxx
+++ b/editeng/source/misc/splwrap.cxx
@@ -46,7 +46,6 @@
 
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::linguistic2;
 
 
diff --git a/editeng/source/misc/unolingu.cxx b/editeng/source/misc/unolingu.cxx
index bd1fae50654e..e252dc3233e6 100644
--- a/editeng/source/misc/unolingu.cxx
+++ b/editeng/source/misc/unolingu.cxx
@@ -48,7 +48,6 @@
 

core.git: basctl/source

2024-04-08 Thread Gabor Kelemen (via logerrit)
 basctl/source/basicide/basobj3.cxx |1 -
 basctl/source/dlged/managelang.cxx |1 -
 basctl/source/inc/bastype2.hxx |1 -
 3 files changed, 3 deletions(-)

New commits:
commit 95fab3f7dc1d7b802dce94d934b8ec95def92bf2
Author: Gabor Kelemen 
AuthorDate: Sat Mar 30 20:54:12 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Mon Apr 8 10:06:39 2024 +0200

tdf#146619 Drop unused 'using namespace' in: basctl/

Change-Id: I7df9fa0e7de3cf7ee39ce96bf9ff32c54db14763
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165687
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/basctl/source/basicide/basobj3.cxx 
b/basctl/source/basicide/basobj3.cxx
index 4672cdd52c2b..5d5bacf0e88d 100644
--- a/basctl/source/basicide/basobj3.cxx
+++ b/basctl/source/basicide/basobj3.cxx
@@ -48,7 +48,6 @@
 namespace basctl
 {
 
-using namespace comphelper;
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::container;
diff --git a/basctl/source/dlged/managelang.cxx 
b/basctl/source/dlged/managelang.cxx
index 69f366ed6656..1dc44b0f09cf 100644
--- a/basctl/source/dlged/managelang.cxx
+++ b/basctl/source/dlged/managelang.cxx
@@ -40,7 +40,6 @@
 namespace basctl
 {
 
-using namespace ::com::sun::star::i18n;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::resource;
 using namespace ::com::sun::star::uno;
diff --git a/basctl/source/inc/bastype2.hxx b/basctl/source/inc/bastype2.hxx
index 0161797f16a2..22321b309757 100644
--- a/basctl/source/inc/bastype2.hxx
+++ b/basctl/source/inc/bastype2.hxx
@@ -45,7 +45,6 @@ namespace o3tl {
 
 namespace basctl
 {
-using namespace ::com::sun::star::uno;
 
 enum EntryType
 {


core.git: cui/source

2024-04-05 Thread Gabor Kelemen (via logerrit)
 cui/source/customize/SvxNotebookbarConfigPage.cxx |2 --
 cui/source/dialogs/SignSignatureLineDialog.cxx|2 --
 cui/source/dialogs/cuifmsearch.cxx|2 --
 cui/source/dialogs/hldocntp.cxx   |1 -
 cui/source/dialogs/hltpbase.cxx   |2 --
 cui/source/dialogs/insdlg.cxx |1 -
 cui/source/dialogs/multipat.cxx   |1 -
 cui/source/options/dbregister.cxx |2 --
 cui/source/options/dbregisterednamesconfig.cxx|1 -
 cui/source/options/optjava.cxx|2 --
 cui/source/options/optjsearch.cxx |2 --
 cui/source/options/optpath.cxx|1 -
 cui/source/options/optsave.cxx|1 -
 cui/source/options/personalization.cxx|1 -
 cui/source/options/treeopt.cxx|1 -
 cui/source/tabpages/autocdlg.cxx  |1 -
 cui/source/tabpages/numpages.cxx  |1 -
 17 files changed, 24 deletions(-)

New commits:
commit aa11db227da2830accac7c523c534b2b86a86bb2
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 21:52:52 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Fri Apr 5 13:45:28 2024 +0200

tdf#146619 Drop unused 'using namespace' in: cui/

Change-Id: I311423b045a504b268cffdf740db1fe82aea2810
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165568
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/cui/source/customize/SvxNotebookbarConfigPage.cxx 
b/cui/source/customize/SvxNotebookbarConfigPage.cxx
index d41ecf389e59..7389d05b91d2 100644
--- a/cui/source/customize/SvxNotebookbarConfigPage.cxx
+++ b/cui/source/customize/SvxNotebookbarConfigPage.cxx
@@ -45,10 +45,8 @@
 
 namespace uno = com::sun::star::uno;
 namespace frame = com::sun::star::frame;
-namespace lang = com::sun::star::lang;
 namespace container = com::sun::star::container;
 namespace beans = com::sun::star::beans;
-namespace graphic = com::sun::star::graphic;
 
 static bool isCategoryAvailable(std::u16string_view sClassId, 
std::u16string_view sUIItemId,
 std::u16string_view sActiveCategory, bool& 
isCategory)
diff --git a/cui/source/dialogs/SignSignatureLineDialog.cxx 
b/cui/source/dialogs/SignSignatureLineDialog.cxx
index 4088b40e1765..d3e0bfb5b65e 100644
--- a/cui/source/dialogs/SignSignatureLineDialog.cxx
+++ b/cui/source/dialogs/SignSignatureLineDialog.cxx
@@ -41,8 +41,6 @@ using namespace css;
 using namespace css::uno;
 using namespace css::beans;
 using namespace css::frame;
-using namespace css::io;
-using namespace css::lang;
 using namespace css::frame;
 using namespace css::text;
 using namespace css::graphic;
diff --git a/cui/source/dialogs/cuifmsearch.cxx 
b/cui/source/dialogs/cuifmsearch.cxx
index bb3bfaf5cac5..eff48a747fe7 100644
--- a/cui/source/dialogs/cuifmsearch.cxx
+++ b/cui/source/dialogs/cuifmsearch.cxx
@@ -34,10 +34,8 @@
 #include 
 
 using namespace css::uno;
-using namespace css::i18n;
 using namespace ::svxform;
 using namespace css::sdbc;
-using namespace css::util;
 
 #define MAX_HISTORY_ENTRIES 50
 
diff --git a/cui/source/dialogs/hldocntp.cxx b/cui/source/dialogs/hldocntp.cxx
index 3b3352315dd1..d58077a431f4 100644
--- a/cui/source/dialogs/hldocntp.cxx
+++ b/cui/source/dialogs/hldocntp.cxx
@@ -43,7 +43,6 @@
 #include 
 #include 
 
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::ui::dialogs;
 using namespace ::com::sun::star::uno;
 
diff --git a/cui/source/dialogs/hltpbase.cxx b/cui/source/dialogs/hltpbase.cxx
index 24621538caec..7f2230e1d87a 100644
--- a/cui/source/dialogs/hltpbase.cxx
+++ b/cui/source/dialogs/hltpbase.cxx
@@ -39,8 +39,6 @@
 #include 
 #include 
 
-using namespace ::ucbhelper;
-
 namespace {
 
 OUString CreateUiNameFromURL( const OUString& aStrURL )
diff --git a/cui/source/dialogs/insdlg.cxx b/cui/source/dialogs/insdlg.cxx
index 3cb50c2a6066..e4c1c6687768 100644
--- a/cui/source/dialogs/insdlg.cxx
+++ b/cui/source/dialogs/insdlg.cxx
@@ -58,7 +58,6 @@
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::container;
 using namespace ::com::sun::star::ui::dialogs;
 
 bool InsertObjectDialog_Impl::IsCreateNew() const
diff --git a/cui/source/dialogs/multipat.cxx b/cui/source/dialogs/multipat.cxx
index 085d21f995de..e385a6ccface 100644
--- a/cui/source/dialogs/multipat.cxx
+++ b/cui/source/dialogs/multipat.cxx
@@ -36,7 +36,6 @@
 #include 
 #include 
 
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::ui::dialogs;
 using namespace ::com::sun::star::uno;
 
diff --git a/cui/source/options/dbregister.cxx 
b/cui/source/options/dbregister.cxx
index 8386cc546595..6aa9213efd92 100644
--- a/cui/source/options/dbregister.cxx
+++ b/cui/source/options/dbregister.cxx
@@ -45,9 +45,7 @@ namespace svx
 {
 
 
-using namespace 

core.git: forms/source

2024-04-05 Thread Gabor Kelemen (via logerrit)
 forms/source/component/Button.cxx   |1 -
 forms/source/component/CheckBox.cxx |4 
 forms/source/component/Columns.cxx  |1 -
 forms/source/component/ComboBox.cxx |2 --
 forms/source/component/Currency.cxx |4 
 forms/source/component/Date.cxx |4 
 forms/source/component/Edit.cxx |1 -
 forms/source/component/EditBase.cxx |5 -
 forms/source/component/File.cxx |2 --
 forms/source/component/Filter.cxx   |2 --
 forms/source/component/FixedText.cxx|3 ---
 forms/source/component/FormattedField.cxx   |2 --
 forms/source/component/FormattedFieldWrapper.cxx|4 
 forms/source/component/FormsCollection.cxx  |2 --
 forms/source/component/GroupBox.cxx |3 ---
 forms/source/component/Hidden.cxx   |3 ---
 forms/source/component/ImageButton.cxx  |1 -
 forms/source/component/Numeric.cxx  |5 -
 forms/source/component/RadioButton.cxx  |3 ---
 forms/source/component/Time.cxx |4 
 forms/source/component/clickableimage.cxx   |1 -
 forms/source/component/formcontrolfont.cxx  |1 -
 forms/source/component/navigationbar.cxx|2 --
 forms/source/component/refvaluecomponent.cxx|1 -
 forms/source/component/scrollbar.cxx|3 ---
 forms/source/component/spinbutton.cxx   |3 ---
 forms/source/helper/controlfeatureinterception.cxx  |1 -
 forms/source/richtext/attributedispatcher.cxx   |1 -
 forms/source/richtext/parametrizedattributedispatcher.cxx   |1 -
 forms/source/richtext/richtextcontrol.cxx   |1 -
 forms/source/richtext/richtextmodel.cxx |1 -
 forms/source/richtext/richtextunowrapper.cxx|2 --
 forms/source/richtext/specialdispatchers.cxx|1 -
 forms/source/solar/component/navbarcontrol.cxx  |1 -
 forms/source/xforms/submission/serialization_urlencoded.cxx |1 -
 forms/source/xforms/submission/submission_get.cxx   |1 -
 forms/source/xforms/submission/submission_post.cxx  |1 -
 forms/source/xforms/submission/submission_put.cxx   |1 -
 forms/source/xforms/xpathlib/extension.cxx  |1 -
 39 files changed, 81 deletions(-)

New commits:
commit ad640dedd269dc1e03cf362e11975bbd6d963120
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 22:48:22 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Fri Apr 5 13:45:10 2024 +0200

tdf#146619 Drop unused 'using namespace' in: forms

Change-Id: I5d81e8c359100da2a7dd98e75a1f79bbb73d9521
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165570
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/forms/source/component/Button.cxx 
b/forms/source/component/Button.cxx
index 28cac777ea43..58a6627119ed 100644
--- a/forms/source/component/Button.cxx
+++ b/forms/source/component/Button.cxx
@@ -45,7 +45,6 @@ using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::sdb;
 using namespace ::com::sun::star::sdbc;
 using namespace ::com::sun::star::beans;
-using namespace ::com::sun::star::container;
 using namespace ::com::sun::star::form;
 using namespace ::com::sun::star::awt;
 using namespace ::com::sun::star::io;
diff --git a/forms/source/component/CheckBox.cxx 
b/forms/source/component/CheckBox.cxx
index fcfdabc53ae1..064a156b1a95 100644
--- a/forms/source/component/CheckBox.cxx
+++ b/forms/source/component/CheckBox.cxx
@@ -31,13 +31,9 @@ using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::sdb;
 using namespace ::com::sun::star::sdbc;
 using namespace ::com::sun::star::beans;
-using namespace ::com::sun::star::container;
 using namespace ::com::sun::star::form;
-using namespace ::com::sun::star::awt;
 using namespace ::com::sun::star::io;
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::util;
-using namespace ::com::sun::star::form::binding;
 
 OCheckBoxControl::OCheckBoxControl(const Reference& 
_rxFactory)
 :OBoundControl(_rxFactory, VCL_CONTROL_CHECKBOX)
diff --git a/forms/source/component/Columns.cxx 
b/forms/source/component/Columns.cxx
index 56be293fc549..1ba457d567a7 100644
--- a/forms/source/component/Columns.cxx
+++ b/forms/source/component/Columns.cxx
@@ -46,7 +46,6 @@ using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::container;
 using namespace 

core.git: toolkit/source

2024-04-03 Thread Gabor Kelemen (via logerrit)
 toolkit/source/awt/vclxspinbutton.cxx  |1 -
 toolkit/source/awt/vclxtabpagecontainer.cxx|1 -
 toolkit/source/controls/dialogcontrol.cxx  |1 -
 toolkit/source/controls/eventcontainer.cxx |1 -
 toolkit/source/controls/filectrl.cxx   |1 -
 toolkit/source/controls/table/tablecontrol.cxx |1 -
 toolkit/source/controls/tabpagecontainer.cxx   |1 -
 7 files changed, 7 deletions(-)

New commits:
commit b0edb1909b9deb1a170497f935a528f8118c8308
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 14:08:31 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Wed Apr 3 19:07:48 2024 +0200

tdf#146619 Drop unused 'using namespace' in: toolkit/

Change-Id: Idab290ebc1394587c17dbec0c110bfa759cbdb8c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165540
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/toolkit/source/awt/vclxspinbutton.cxx 
b/toolkit/source/awt/vclxspinbutton.cxx
index cc4747dc20f4..5da0c3ad0649 100644
--- a/toolkit/source/awt/vclxspinbutton.cxx
+++ b/toolkit/source/awt/vclxspinbutton.cxx
@@ -32,7 +32,6 @@ namespace toolkit
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::awt;
 using namespace ::com::sun::star::lang;
-using namespace ::com::sun::star::beans;
 
 
 namespace
diff --git a/toolkit/source/awt/vclxtabpagecontainer.cxx 
b/toolkit/source/awt/vclxtabpagecontainer.cxx
index f9f4779a2603..9df3a701c8a0 100644
--- a/toolkit/source/awt/vclxtabpagecontainer.cxx
+++ b/toolkit/source/awt/vclxtabpagecontainer.cxx
@@ -36,7 +36,6 @@ using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::container;
-using namespace ::com::sun::star::view;
 
 
 void VCLXTabPageContainer::GetPropertyIds( std::vector< sal_uInt16 >  )
diff --git a/toolkit/source/controls/dialogcontrol.cxx 
b/toolkit/source/controls/dialogcontrol.cxx
index ba954a15412a..8adc7af9c41b 100644
--- a/toolkit/source/controls/dialogcontrol.cxx
+++ b/toolkit/source/controls/dialogcontrol.cxx
@@ -56,7 +56,6 @@ using namespace ::com::sun::star::awt;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::container;
 using namespace ::com::sun::star::beans;
-using namespace ::com::sun::star::util;
 
 constexpr OUStringLiteral PROPERTY_DIALOGSOURCEURL = u"DialogSourceURL";
 constexpr OUStringLiteral PROPERTY_IMAGEURL = u"ImageURL";
diff --git a/toolkit/source/controls/eventcontainer.cxx 
b/toolkit/source/controls/eventcontainer.cxx
index 7611e0f2fe5f..e51b076d80fb 100644
--- a/toolkit/source/controls/eventcontainer.cxx
+++ b/toolkit/source/controls/eventcontainer.cxx
@@ -26,7 +26,6 @@
 using namespace com::sun::star::uno;
 using namespace com::sun::star::lang;
 using namespace com::sun::star::container;
-using namespace com::sun::star::registry;
 using namespace com::sun::star::script;
 using namespace cppu;
 
diff --git a/toolkit/source/controls/filectrl.cxx 
b/toolkit/source/controls/filectrl.cxx
index f1b476220bcd..25835bf063ab 100644
--- a/toolkit/source/controls/filectrl.cxx
+++ b/toolkit/source/controls/filectrl.cxx
@@ -30,7 +30,6 @@
 #include 
 
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::ui;
 
 
diff --git a/toolkit/source/controls/table/tablecontrol.cxx 
b/toolkit/source/controls/table/tablecontrol.cxx
index 42b314569e82..7e609601722a 100644
--- a/toolkit/source/controls/table/tablecontrol.cxx
+++ b/toolkit/source/controls/table/tablecontrol.cxx
@@ -33,7 +33,6 @@
 using namespace ::com::sun::star::uno;
 using ::com::sun::star::accessibility::XAccessible;
 using namespace ::com::sun::star::accessibility;
-using namespace ::com::sun::star::lang;
 
 namespace svt::table
 {
diff --git a/toolkit/source/controls/tabpagecontainer.cxx 
b/toolkit/source/controls/tabpagecontainer.cxx
index 367b5c4f2211..2a3ace044023 100644
--- a/toolkit/source/controls/tabpagecontainer.cxx
+++ b/toolkit/source/controls/tabpagecontainer.cxx
@@ -38,7 +38,6 @@ using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::container;
-using namespace ::com::sun::star::view;
 using ::com::sun::star::awt::tab::XTabPageModel;
 
 constexpr OUStringLiteral WRONG_TYPE_EXCEPTION = u"Type must be 
css::awt::tab::XTabPageModel!";


core.git: sd/source

2024-04-03 Thread Gabor Kelemen (via logerrit)
 sd/source/console/PresenterPane.cxx   |1 -
 sd/source/console/PresenterSpritePane.cxx |1 -
 sd/source/core/drawdoc.cxx|1 -
 sd/source/core/drawdoc4.cxx   |1 -
 sd/source/core/sdpage2.cxx|1 -
 sd/source/filter/cgm/sdcgmfilter.cxx  |1 -
 sd/source/filter/eppt/pptx-animations-cond.cxx|1 -
 sd/source/filter/grf/sdgrffilter.cxx  |1 -
 sd/source/filter/html/htmlex.cxx  |3 ---
 sd/source/filter/xml/sdtransform.cxx  |2 --
 sd/source/ui/accessibility/AccessiblePresentationShape.cxx|1 -
 sd/source/ui/annotations/annotationmanager.cxx|6 --
 sd/source/ui/annotations/annotationtag.cxx|3 ---
 sd/source/ui/app/sdxfer.cxx   |2 --
 sd/source/ui/controller/slidelayoutcontroller.cxx |1 -
 sd/source/ui/dlg/present.cxx  |1 -
 sd/source/ui/dlg/tpaction.cxx |1 -
 sd/source/ui/docshell/docshel3.cxx|2 --
 sd/source/ui/framework/module/DrawModule.cxx  |1 -
 sd/source/ui/framework/module/ImpressModule.cxx   |1 -
 sd/source/ui/framework/module/PresentationModule.cxx  |1 -
 sd/source/ui/func/futext.cxx  |2 --
 sd/source/ui/remotecontrol/Receiver.cxx   |1 -
 sd/source/ui/remotecontrol/Server.cxx |1 -
 sd/source/ui/sidebar/MasterPageContainerFiller.cxx|1 -
 sd/source/ui/sidebar/MasterPagesSelector.cxx  |2 --
 sd/source/ui/sidebar/PanelFactory.cxx |1 -
 sd/source/ui/slideshow/slideshow.cxx  |1 -
 sd/source/ui/slideshow/slideshowimpl.cxx  |1 -
 sd/source/ui/slidesorter/controller/SlideSorterController.cxx |1 -
 sd/source/ui/slidesorter/controller/SlsPageSelector.cxx   |1 -
 sd/source/ui/slidesorter/controller/SlsSlotManager.cxx|1 -
 sd/source/ui/slidesorter/view/SlideSorterView.cxx |1 -
 sd/source/ui/slidesorter/view/SlsPageObjectPainter.cxx|2 --
 sd/source/ui/table/TableDesignPane.cxx|1 -
 sd/source/ui/table/tablefunction.cxx  |5 -
 sd/source/ui/unoidl/UnoDocumentSettings.cxx   |2 --
 sd/source/ui/view/ViewShellImplementation.cxx |3 ---
 sd/source/ui/view/drviews7.cxx|1 -
 sd/source/ui/view/drviewsf.cxx|1 -
 sd/source/ui/view/outlnvs2.cxx|3 ---
 sd/source/ui/view/outlnvsh.cxx|1 -
 sd/source/ui/view/presvish.cxx|4 
 sd/source/ui/view/sdview3.cxx |1 -
 44 files changed, 71 deletions(-)

New commits:
commit 6dc092045c0e8bb46c0f5e90f529a9285727f93f
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 21:45:08 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Wed Apr 3 19:03:25 2024 +0200

tdf#146619 Drop unused 'using namespace' in: sd/

Change-Id: I7e48be1962d1e643c49c8cc0d6ca01ffbbb97429
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165567
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/sd/source/console/PresenterPane.cxx 
b/sd/source/console/PresenterPane.cxx
index ad35315438e8..41420843971f 100644
--- a/sd/source/console/PresenterPane.cxx
+++ b/sd/source/console/PresenterPane.cxx
@@ -24,7 +24,6 @@
 
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::drawing::framework;
 
 namespace sdext::presenter {
 
diff --git a/sd/source/console/PresenterSpritePane.cxx 
b/sd/source/console/PresenterSpritePane.cxx
index c90f250fb192..a1a2f7148168 100644
--- a/sd/source/console/PresenterSpritePane.cxx
+++ b/sd/source/console/PresenterSpritePane.cxx
@@ -23,7 +23,6 @@
 
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::drawing::framework;
 
 namespace sdext::presenter {
 
diff --git a/sd/source/core/drawdoc.cxx b/sd/source/core/drawdoc.cxx
index ea32e0f5e8d6..1ed511467158 100644
--- a/sd/source/core/drawdoc.cxx
+++ b/sd/source/core/drawdoc.cxx
@@ -87,7 +87,6 @@ namespace com::sun::star::linguistic2 { class XSpellChecker1; 
}
 using namespace ::sd;
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::linguistic2;
 
 using namespace com::sun::star::xml::dom;
diff --git 

core.git: test/source

2024-04-03 Thread Gabor Kelemen (via logerrit)
 test/source/unoapixml_test.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 1c9c748c71f7adff6b6ba1a893950c4ad3a4d1ff
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 14:20:48 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Wed Apr 3 19:02:48 2024 +0200

tdf#146619 Drop unused 'using namespace' in: test/

Change-Id: I2b10b005a1f8ac9d4aa6af7516bca98e6dcd41c1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165566
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/test/source/unoapixml_test.cxx b/test/source/unoapixml_test.cxx
index bf0f830a7355..d07c97351066 100644
--- a/test/source/unoapixml_test.cxx
+++ b/test/source/unoapixml_test.cxx
@@ -19,7 +19,6 @@
 #include 
 
 using namespace css;
-using namespace css::uno;
 
 UnoApiXmlTest::UnoApiXmlTest(OUString path)
 : UnoApiTest(std::move(path))


core.git: svtools/source

2024-04-03 Thread Gabor Kelemen (via logerrit)
 svtools/source/brwbox/brwbox3.cxx  |2 --
 svtools/source/config/accessibilityoptions.cxx |3 ---
 svtools/source/config/miscopt.cxx  |1 -
 svtools/source/config/printoptions.cxx |3 ---
 svtools/source/control/inettbc.cxx |1 -
 svtools/source/control/ruler.cxx   |1 -
 svtools/source/control/toolbarmenu.cxx |1 -
 svtools/source/control/valueset.cxx|1 -
 svtools/source/dialogs/addresstemplate.cxx |1 -
 svtools/source/dialogs/colrdlg.cxx |1 -
 svtools/source/misc/dialogclosedlistener.cxx   |1 -
 svtools/source/misc/stringtransfer.cxx |1 -
 svtools/source/uno/addrtempuno.cxx |1 -
 svtools/source/uno/framestatuslistener.cxx |1 -
 14 files changed, 19 deletions(-)

New commits:
commit 2c2c1d274fe6336f4f88dd2fb9f716c1d1b092d2
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 14:08:57 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Wed Apr 3 08:58:06 2024 +0200

tdf#146619 Drop unused 'using namespace' in: svtools/

Change-Id: Ia74e293ba140d7e204a2706b8e2827669bfdfb1e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165541
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/svtools/source/brwbox/brwbox3.cxx 
b/svtools/source/brwbox/brwbox3.cxx
index 32ab1807ac69..1237060a1b89 100644
--- a/svtools/source/brwbox/brwbox3.cxx
+++ b/svtools/source/brwbox/brwbox3.cxx
@@ -35,8 +35,6 @@ using namespace ::com::sun::star::accessibility;
 
 namespace svt
 {
-using namespace ::com::sun::star::lang;
-
 static Reference< XAccessible > getHeaderCell( 
BrowseBoxImpl::THeaderCellMap& _raHeaderCells,
 sal_Int32 _nPos,
 AccessibleBrowseBoxObjType _eType,
diff --git a/svtools/source/config/accessibilityoptions.cxx 
b/svtools/source/config/accessibilityoptions.cxx
index 949404491805..f931bf4aa890 100644
--- a/svtools/source/config/accessibilityoptions.cxx
+++ b/svtools/source/config/accessibilityoptions.cxx
@@ -35,9 +35,6 @@
 
 #include 
 
-using namespace utl;
-using namespace com::sun::star::uno;
-
 #define HELP_TIP_TIMEOUT 0x // max. timeout setting to pretend a 
non-timeout
 
 namespace SvtAccessibilityOptions
diff --git a/svtools/source/config/miscopt.cxx 
b/svtools/source/config/miscopt.cxx
index ca8537b1c38c..31257615c2b1 100644
--- a/svtools/source/config/miscopt.cxx
+++ b/svtools/source/config/miscopt.cxx
@@ -37,7 +37,6 @@
 #include 
 
 using namespace ::utl   ;
-using namespace ::osl   ;
 using namespace ::com::sun::star::uno   ;
 using namespace ::com::sun::star;
 
diff --git a/svtools/source/config/printoptions.cxx 
b/svtools/source/config/printoptions.cxx
index 3f6293813a09..769afbde2cb1 100644
--- a/svtools/source/config/printoptions.cxx
+++ b/svtools/source/config/printoptions.cxx
@@ -27,9 +27,6 @@ const sal_uInt16 aDPIArray[] = { 72, 96, 150, 200, 300, 600 };
 
 #define DPI_COUNT (SAL_N_ELEMENTS(aDPIArray))
 
-using namespace ::osl;
-using namespace ::com::sun::star::uno;
-
 namespace svtools
 {
 
diff --git a/svtools/source/control/inettbc.cxx 
b/svtools/source/control/inettbc.cxx
index 0ffad5414c08..fb98ebb45182 100644
--- a/svtools/source/control/inettbc.cxx
+++ b/svtools/source/control/inettbc.cxx
@@ -60,7 +60,6 @@ using namespace ::ucbhelper;
 using namespace ::utl;
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::beans;
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::sdbc;
 using namespace ::com::sun::star::task;
 using namespace ::com::sun::star::ucb;
diff --git a/svtools/source/control/ruler.cxx b/svtools/source/control/ruler.cxx
index 5dbe5014f94b..f26240107f9f 100644
--- a/svtools/source/control/ruler.cxx
+++ b/svtools/source/control/ruler.cxx
@@ -37,7 +37,6 @@
 
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::accessibility;
 
 #define RULER_OFF   3
diff --git a/svtools/source/control/toolbarmenu.cxx 
b/svtools/source/control/toolbarmenu.cxx
index 92519ad356ad..8a1761a7006e 100644
--- a/svtools/source/control/toolbarmenu.cxx
+++ b/svtools/source/control/toolbarmenu.cxx
@@ -31,7 +31,6 @@
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::frame;
-using namespace ::com::sun::star::accessibility;
 
 namespace {
 
diff --git a/svtools/source/control/valueset.cxx 
b/svtools/source/control/valueset.cxx
index 87696d1a7886..0127ea7a1901 100644
--- a/svtools/source/control/valueset.cxx
+++ b/svtools/source/control/valueset.cxx
@@ -43,7 +43,6 @@
 #include 
 
 using namespace css::uno;
-using namespace css::lang;
 using namespace css::accessibility;
 
 namespace
diff --git a/svtools/source/dialogs/addresstemplate.cxx 

core.git: svgio/source

2024-04-03 Thread Gabor Kelemen (via logerrit)
 svgio/source/svgreader/svgtextposition.cxx |2 --
 1 file changed, 2 deletions(-)

New commits:
commit 28d6c626fd0039413daa31ab37c006c64a63e05e
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 14:08:03 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Wed Apr 3 08:57:49 2024 +0200

tdf#146619 Drop unused 'using namespace' in: svgio/

Change-Id: I4db608823faf4588e65e53fd099c9bc76bf39f68
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165539
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/svgio/source/svgreader/svgtextposition.cxx 
b/svgio/source/svgreader/svgtextposition.cxx
index 50a896ba2204..fe83b801dd47 100644
--- a/svgio/source/svgreader/svgtextposition.cxx
+++ b/svgio/source/svgreader/svgtextposition.cxx
@@ -19,8 +19,6 @@
 
 #include 
 
-using namespace drawinglayer::primitive2d;
-
 namespace svgio::svgreader
 {
 SvgTextPosition::SvgTextPosition(SvgTextPosition* pParent, const SvgTspanNode& 
rSvgTspanNode)


core.git: dbaccess/qa dbaccess/source

2024-04-03 Thread Gabor Kelemen (via logerrit)
 dbaccess/qa/extras/macros-test.cxx |1 -
 dbaccess/qa/extras/rowsetclones.cxx|1 -
 dbaccess/source/core/api/BookmarkSet.cxx   |4 
 dbaccess/source/core/api/CIndexes.cxx  |3 ---
 dbaccess/source/core/api/CRowSetDataColumn.cxx |1 -
 dbaccess/source/core/api/CacheSet.cxx  |1 -
 dbaccess/source/core/api/FilteredContainer.cxx |4 
 dbaccess/source/core/api/HelperCollections.cxx |4 
 dbaccess/source/core/api/HelperCollections.hxx |5 -
 dbaccess/source/core/api/KeySet.cxx|1 -
 dbaccess/source/core/api/OptimisticSet.cxx |4 
 dbaccess/source/core/api/PrivateRow.cxx|3 ---
 dbaccess/source/core/api/RowSet.cxx|1 -
 dbaccess/source/core/api/RowSetCache.cxx   |2 --
 dbaccess/source/core/api/StaticSet.cxx |4 
 dbaccess/source/core/api/WrappedResultSet.cxx  |4 
 dbaccess/source/core/api/callablestatement.cxx |3 ---
 dbaccess/source/core/api/column.cxx|4 
 dbaccess/source/core/api/datacolumn.cxx|3 ---
 dbaccess/source/core/api/datasettings.cxx  |1 -
 dbaccess/source/core/api/definitioncolumn.cxx  |1 -
 dbaccess/source/core/api/preparedstatement.cxx |1 -
 dbaccess/source/core/api/query.cxx |1 -
 dbaccess/source/core/api/querycomposer.cxx |1 -
 dbaccess/source/core/api/querycontainer.cxx|1 -
 dbaccess/source/core/api/querydescriptor.cxx   |3 ---
 dbaccess/source/core/api/resultcolumn.cxx  |2 --
 dbaccess/source/core/api/table.cxx |1 -
 dbaccess/source/core/api/tablecontainer.cxx|1 -
 dbaccess/source/core/api/viewcontainer.cxx |2 --
 dbaccess/source/core/dataaccess/ComponentDefinition.cxx|1 -
 dbaccess/source/core/dataaccess/ContentHelper.cxx  |2 --
 dbaccess/source/core/dataaccess/ModelImpl.cxx  |3 ---
 dbaccess/source/core/dataaccess/commandcontainer.cxx   |4 
 dbaccess/source/core/dataaccess/commanddefinition.cxx  |2 --
 dbaccess/source/core/dataaccess/connection.cxx |1 -
 dbaccess/source/core/dataaccess/databasecontext.cxx|1 -
 dbaccess/source/core/dataaccess/documentcontainer.cxx  |1 -
 dbaccess/source/core/dataaccess/intercept.cxx  |2 --
 dbaccess/source/core/dataaccess/myucp_datasupplier.cxx |2 --
 dbaccess/source/core/dataaccess/myucp_resultset.cxx|3 ---
 dbaccess/source/core/misc/dsntypes.cxx |1 -
 dbaccess/source/core/misc/sdbcoretools.cxx |2 --
 dbaccess/source/filter/hsqldb/columndef.cxx|2 --
 dbaccess/source/filter/xml/dbloader2.cxx   |1 -
 dbaccess/source/filter/xml/xmlAutoStyle.cxx|1 -
 dbaccess/source/filter/xml/xmlComponent.cxx|1 -
 dbaccess/source/filter/xml/xmlExport.hxx   |4 
 dbaccess/source/filter/xml/xmlHelper.cxx   |1 -
 dbaccess/source/filter/xml/xmlTableFilterPattern.cxx   |3 ---
 dbaccess/source/ui/app/AppControllerDnD.cxx|1 -
 dbaccess/source/ui/app/AppDetailView.cxx   |2 --
 dbaccess/source/ui/app/AppSwapWindow.cxx   |3 ---
 dbaccess/source/ui/browser/brwview.cxx |1 -
 dbaccess/source/ui/browser/dataview.cxx|2 --
 dbaccess/source/ui/browser/dsEntriesNoExp.cxx  |2 --
 dbaccess/source/ui/browser/dsbrowserDnD.cxx|8 
 dbaccess/source/ui/browser/exsrcbrw.cxx|1 -
 dbaccess/source/ui/browser/genericcontroller.cxx   |1 -
 dbaccess/source/ui/browser/sbagrid.cxx |2 --
 dbaccess/source/ui/browser/unodatbr.cxx|1 -
 dbaccess/source/ui/control/RelationControl.cxx |1 -
 dbaccess/source/ui/control/tabletree.cxx   |1 -
 dbaccess/source/ui/dlg/CollectionView.cxx  |2 --
 dbaccess/source/ui/dlg/ConnectionHelper.cxx|4 
 dbaccess/source/ui/dlg/ConnectionPage.cxx  |7 ---
 dbaccess/source/ui/dlg/ConnectionPageSetup.cxx |8 
 dbaccess/source/ui/dlg/DbAdminImpl.cxx |1 -
 dbaccess/source/ui/dlg/RelationDlg.cxx |2 --
 dbaccess/source/ui/dlg/TablesSingleDlg.cxx |2 --
 dbaccess/source/ui/dlg/UserAdmin.cxx   |1 -
 

core.git: svx/source

2024-04-03 Thread Gabor Kelemen (via logerrit)
 svx/source/dialog/dlgctrl.cxx   |1 -
 svx/source/dialog/fntctrl.cxx   |3 ---
 svx/source/dialog/searchcharmap.cxx |2 --
 svx/source/dialog/srchdlg.cxx   |2 --
 svx/source/fmcomp/dbaexchange.cxx   |1 -
 svx/source/fmcomp/dbaobjectex.cxx   |2 --
 svx/source/form/dataaccessdescriptor.cxx|1 -
 svx/source/form/fmdocumentclassification.cxx|1 -
 svx/source/form/fmobj.cxx   |2 --
 svx/source/form/fmshell.cxx |1 -
 svx/source/form/fmtextcontrolshell.cxx  |1 -
 svx/source/form/fmtools.cxx |4 
 svx/source/form/fmview.cxx  |3 ---
 svx/source/form/navigatortreemodel.cxx  |3 ---
 svx/source/form/sdbdatacolumn.cxx   |2 --
 svx/source/form/sqlparserclient.cxx |2 --
 svx/source/sidebar/media/MediaPlaybackPanel.hxx |1 -
 svx/source/sidebar/nbdtmg.cxx   |1 -
 svx/source/table/accessiblecell.cxx |1 -
 svx/source/table/accessibletableshape.cxx   |2 --
 svx/source/table/cell.cxx   |1 -
 svx/source/table/cellrange.cxx  |1 -
 svx/source/table/tablecolumns.cxx   |1 -
 svx/source/table/tablelayouter.cxx  |1 -
 svx/source/table/tablerows.cxx  |1 -
 svx/source/table/tableundo.cxx  |1 -
 svx/source/tbxctrls/extrusioncontrols.cxx   |1 -
 svx/source/tbxctrls/fillctrl.cxx|2 --
 svx/source/tbxctrls/fontworkgallery.cxx |1 -
 svx/source/tbxctrls/grafctrl.cxx|2 --
 svx/source/tbxctrls/itemwin.cxx |1 -
 svx/source/tbxctrls/linectrl.cxx|1 -
 svx/source/tbxctrls/linewidthctrl.cxx   |5 -
 svx/source/toolbars/extrusionbar.cxx|1 -
 svx/source/toolbars/fontworkbar.cxx |1 -
 svx/source/unodraw/UnoGraphicExporter.cxx   |1 -
 svx/source/unodraw/tableshape.cxx   |3 ---
 svx/source/unodraw/unoshap2.cxx |1 -
 svx/source/unodraw/unoshap4.cxx |1 -
 svx/source/unodraw/unoshape.cxx |1 -
 svx/source/xml/xmleohlp.cxx |1 -
 svx/source/xml/xmlxtimp.cxx |1 -
 42 files changed, 66 deletions(-)

New commits:
commit 704e71b9d13054a7e21a037663de4feacae2ef25
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 14:09:14 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Wed Apr 3 08:50:52 2024 +0200

tdf#146619 Drop unused 'using namespace' in: svx/

Change-Id: Ic8b925a3ec55166a9d5da05827d2cb335943b665
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165542
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/svx/source/dialog/dlgctrl.cxx b/svx/source/dialog/dlgctrl.cxx
index 456a369fcd16..d68a68faa4d3 100644
--- a/svx/source/dialog/dlgctrl.cxx
+++ b/svx/source/dialog/dlgctrl.cxx
@@ -48,7 +48,6 @@
 
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::accessibility;
 
 // Control for display and selection of the corner points and
diff --git a/svx/source/dialog/fntctrl.cxx b/svx/source/dialog/fntctrl.cxx
index b0723c8e65c1..ad9c5fc62c49 100644
--- a/svx/source/dialog/fntctrl.cxx
+++ b/svx/source/dialog/fntctrl.cxx
@@ -66,9 +66,6 @@
 //an arbitrary number of characters
 #define TEXT_WIDTH 80
 
-using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::lang;
-
 
 // small helper functions to set fonts
 
diff --git a/svx/source/dialog/searchcharmap.cxx 
b/svx/source/dialog/searchcharmap.cxx
index 7284bfd0874b..c1c289d6366d 100644
--- a/svx/source/dialog/searchcharmap.cxx
+++ b/svx/source/dialog/searchcharmap.cxx
@@ -31,8 +31,6 @@
 
 #include 
 
-using namespace ::com::sun::star::accessibility;
-using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star;
 
 
diff --git a/svx/source/dialog/srchdlg.cxx b/svx/source/dialog/srchdlg.cxx
index 93d593d8729f..481124e3c963 100644
--- a/svx/source/dialog/srchdlg.cxx
+++ b/svx/source/dialog/srchdlg.cxx
@@ -76,9 +76,7 @@
 #include 
 #include 
 
-using namespace com::sun::star::i18n;
 using namespace com::sun::star::uno;
-using namespace com::sun::star::accessibility;
 using namespace com::sun::star;
 using namespace comphelper;
 
diff --git a/svx/source/fmcomp/dbaexchange.cxx 
b/svx/source/fmcomp/dbaexchange.cxx
index 904740e38877..8b2c869fd611 100644
--- a/svx/source/fmcomp/dbaexchange.cxx
+++ b/svx/source/fmcomp/dbaexchange.cxx
@@ -38,7 +38,6 @@ namespace svx
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::sdb;
 using namespace ::com::sun::star::sdbc;
-using namespace ::com::sun::star::lang;
 using namespace 

core.git: i18npool/source

2024-04-02 Thread Gabor Kelemen (via logerrit)
 i18npool/source/breakiterator/breakiterator_cjk.cxx|1 -
 i18npool/source/breakiterator/breakiterator_th.cxx |1 -
 i18npool/source/calendar/calendar_hijri.cxx|2 --
 i18npool/source/calendar/calendar_jewish.cxx   |2 --
 i18npool/source/indexentry/indexentrysupplier_ja_phonetic.cxx  |2 --
 i18npool/source/localedata/LocaleNode.hxx  |1 -
 i18npool/source/registerservices/registerservices.cxx  |1 -
 i18npool/source/transliteration/chartonum.cxx  |2 --
 i18npool/source/transliteration/fullwidthToHalfwidth.cxx   |1 -
 i18npool/source/transliteration/halfwidthToFullwidth.cxx   |1 -
 i18npool/source/transliteration/hiraganaToKatakana.cxx |3 ---
 i18npool/source/transliteration/ignoreBaFa_ja_JP.cxx   |2 --
 i18npool/source/transliteration/ignoreHyuByu_ja_JP.cxx |3 ---
 i18npool/source/transliteration/ignoreIandEfollowedByYa_ja_JP.cxx  |1 -
 i18npool/source/transliteration/ignoreIterationMark_ja_JP.cxx  |1 -
 i18npool/source/transliteration/ignoreKana.cxx |1 -
 i18npool/source/transliteration/ignoreKiKuFollowedBySa_ja_JP.cxx   |1 -
 i18npool/source/transliteration/ignoreProlongedSoundMark_ja_JP.cxx |1 -
 i18npool/source/transliteration/ignoreSeZe_ja_JP.cxx   |3 ---
 i18npool/source/transliteration/ignoreSize_ja_JP.cxx   |1 -
 i18npool/source/transliteration/ignoreTiJi_ja_JP.cxx   |3 ---
 i18npool/source/transliteration/ignoreWidth.cxx|1 -
 i18npool/source/transliteration/largeToSmall_ja_JP.cxx |3 ---
 i18npool/source/transliteration/smallToLarge_ja_JP.cxx |3 ---
 i18npool/source/transliteration/texttonum.cxx  |2 --
 25 files changed, 43 deletions(-)

New commits:
commit aacdc24be7a256ea66d45f9ab3d275721c8bafbf
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 14:07:28 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Tue Apr 2 17:28:22 2024 +0200

tdf#146619 Drop unused 'using namespace' in: i18npool/

Change-Id: I3c4ca1083f8ef4053d1b4202bf9617b9373312bf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165537
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/i18npool/source/breakiterator/breakiterator_cjk.cxx 
b/i18npool/source/breakiterator/breakiterator_cjk.cxx
index f657daab0e2f..00dc5e9db0f6 100644
--- a/i18npool/source/breakiterator/breakiterator_cjk.cxx
+++ b/i18npool/source/breakiterator/breakiterator_cjk.cxx
@@ -23,7 +23,6 @@
 #include 
 #include 
 
-using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::i18n;
 using namespace ::com::sun::star::lang;
 
diff --git a/i18npool/source/breakiterator/breakiterator_th.cxx 
b/i18npool/source/breakiterator/breakiterator_th.cxx
index d7accc160f7d..531107b2a102 100644
--- a/i18npool/source/breakiterator/breakiterator_th.cxx
+++ b/i18npool/source/breakiterator/breakiterator_th.cxx
@@ -24,7 +24,6 @@
 #include 
 
 using namespace ::com::sun::star;
-using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::i18n;
 using namespace ::com::sun::star::lang;
 
diff --git a/i18npool/source/calendar/calendar_hijri.cxx 
b/i18npool/source/calendar/calendar_hijri.cxx
index ed64c80db68c..c1223cc3f767 100644
--- a/i18npool/source/calendar/calendar_hijri.cxx
+++ b/i18npool/source/calendar/calendar_hijri.cxx
@@ -26,8 +26,6 @@
 #include 
 #include 
 
-using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::i18n;
 
 namespace i18npool {
diff --git a/i18npool/source/calendar/calendar_jewish.cxx 
b/i18npool/source/calendar/calendar_jewish.cxx
index 19b55eaf8789..faeb7f74b13a 100644
--- a/i18npool/source/calendar/calendar_jewish.cxx
+++ b/i18npool/source/calendar/calendar_jewish.cxx
@@ -24,9 +24,7 @@
 #include 
 #include 
 
-using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::i18n;
-using namespace ::com::sun::star::lang;
 
 namespace i18npool {
 
diff --git a/i18npool/source/indexentry/indexentrysupplier_ja_phonetic.cxx 
b/i18npool/source/indexentry/indexentrysupplier_ja_phonetic.cxx
index 184662f9e56f..53b25d8ed28f 100644
--- a/i18npool/source/indexentry/indexentrysupplier_ja_phonetic.cxx
+++ b/i18npool/source/indexentry/indexentrysupplier_ja_phonetic.cxx
@@ -24,8 +24,6 @@
 #include "data/indexdata_ja_phonetic.h"
 #include 
 
-using namespace ::com::sun::star::i18n;
-
 namespace i18npool {
 
 OUString SAL_CALL IndexEntrySupplier_ja_phonetic::getIndexCharacter( const 
OUString& rIndexEntry,
diff --git a/i18npool/source/localedata/LocaleNode.hxx 
b/i18npool/source/localedata/LocaleNode.hxx
index 495c696b4291..9bb3bee2a5f4 100644
--- a/i18npool/source/localedata/LocaleNode.hxx
+++ b/i18npool/source/localedata/LocaleNode.hxx
@@ -27,7 

core.git: basic/source

2024-04-02 Thread Gabor Kelemen (via logerrit)
 basic/source/classes/eventatt.cxx|1 -
 basic/source/runtime/iosys.cxx   |2 --
 basic/source/runtime/runtime.cxx |1 -
 basic/source/uno/dlgcont.cxx |1 -
 basic/source/uno/modsizeexceeded.cxx |1 -
 basic/source/uno/namecont.cxx|1 -
 basic/source/uno/scriptcont.cxx  |2 --
 7 files changed, 9 deletions(-)

New commits:
commit 49a6a819651caf493038a7d333764ff5cb370a23
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 14:06:47 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Tue Apr 2 08:32:46 2024 +0200

tdf#146619 Drop unused 'using namespace' in: basic/

Change-Id: I55bd0c89880dd97307dde5a5b670e63f3ea66355
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165536
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/basic/source/classes/eventatt.cxx 
b/basic/source/classes/eventatt.cxx
index 93399726ef11..6cf371f3869a 100644
--- a/basic/source/classes/eventatt.cxx
+++ b/basic/source/classes/eventatt.cxx
@@ -58,7 +58,6 @@ using namespace ::com::sun::star::script;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::container;
-using namespace ::com::sun::star::reflection;
 using namespace ::com::sun::star::awt;
 using namespace ::com::sun::star::io;
 using namespace ::cppu;
diff --git a/basic/source/runtime/iosys.cxx b/basic/source/runtime/iosys.cxx
index 3d03274c46c0..015ed8abc29b 100644
--- a/basic/source/runtime/iosys.cxx
+++ b/basic/source/runtime/iosys.cxx
@@ -40,10 +40,8 @@
 #include 
 
 using namespace com::sun::star::uno;
-using namespace com::sun::star::lang;
 using namespace com::sun::star::ucb;
 using namespace com::sun::star::io;
-using namespace com::sun::star::bridge;
 
 
 namespace {
diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx
index 35627045eda8..5d8a2ba2ffc3 100644
--- a/basic/source/runtime/runtime.cxx
+++ b/basic/source/runtime/runtime.cxx
@@ -76,7 +76,6 @@ using com::sun::star::uno::Reference;
 using namespace com::sun::star::uno;
 using namespace com::sun::star::container;
 using namespace com::sun::star::lang;
-using namespace com::sun::star::beans;
 using namespace com::sun::star::script;
 
 using namespace ::com::sun::star;
diff --git a/basic/source/uno/dlgcont.cxx b/basic/source/uno/dlgcont.cxx
index 170a5c0c01cd..533deb182d58 100644
--- a/basic/source/uno/dlgcont.cxx
+++ b/basic/source/uno/dlgcont.cxx
@@ -53,7 +53,6 @@ using namespace com::sun::star::io;
 using namespace com::sun::star::uno;
 using namespace com::sun::star::ucb;
 using namespace com::sun::star::lang;
-using namespace com::sun::star::script;
 using namespace com::sun::star::xml::sax;
 using namespace com::sun::star;
 using namespace cppu;
diff --git a/basic/source/uno/modsizeexceeded.cxx 
b/basic/source/uno/modsizeexceeded.cxx
index b85f285d820f..4210184b37d6 100644
--- a/basic/source/uno/modsizeexceeded.cxx
+++ b/basic/source/uno/modsizeexceeded.cxx
@@ -25,7 +25,6 @@
 
 using namespace com::sun::star;
 using namespace cppu;
-using namespace osl;
 
 ModuleSizeExceeded::ModuleSizeExceeded(const std::vector& sModules)
 {
diff --git a/basic/source/uno/namecont.cxx b/basic/source/uno/namecont.cxx
index 2d1dea85fc67..228220182811 100644
--- a/basic/source/uno/namecont.cxx
+++ b/basic/source/uno/namecont.cxx
@@ -90,7 +90,6 @@ using namespace com::sun::star::frame;
 using namespace com::sun::star::deployment;
 using namespace com::sun::star;
 using namespace cppu;
-using namespace osl;
 
 using com::sun::star::uno::Reference;
 
diff --git a/basic/source/uno/scriptcont.cxx b/basic/source/uno/scriptcont.cxx
index 2f5cb5f15198..d078deddece4 100644
--- a/basic/source/uno/scriptcont.cxx
+++ b/basic/source/uno/scriptcont.cxx
@@ -51,7 +51,6 @@
 namespace basic
 {
 
-using namespace com::sun::star::document;
 using namespace com::sun::star::container;
 using namespace com::sun::star::io;
 using namespace com::sun::star::uno;
@@ -61,7 +60,6 @@ using namespace com::sun::star::script;
 using namespace com::sun::star::xml::sax;
 using namespace com::sun::star;
 using namespace cppu;
-using namespace osl;
 
 
 // Implementation class SfxScriptLibraryContainer


core.git: sfx2/source

2024-04-02 Thread Gabor Kelemen (via logerrit)
 sfx2/source/appl/appbas.cxx|1 -
 sfx2/source/appl/appbaslib.cxx |1 -
 sfx2/source/appl/appcfg.cxx|2 --
 sfx2/source/appl/appmisc.cxx   |1 -
 sfx2/source/appl/newhelp.cxx   |1 -
 sfx2/source/appl/opengrf.cxx   |1 -
 sfx2/source/appl/sfxhelp.cxx   |2 --
 sfx2/source/appl/sfxpicklist.cxx   |2 --
 sfx2/source/bastyp/helper.cxx  |1 -
 sfx2/source/control/recentdocsview.cxx |2 --
 sfx2/source/control/thumbnailview.cxx  |1 -
 sfx2/source/dialog/mailmodel.cxx   |1 -
 sfx2/source/doc/objmisc.cxx|1 -
 sfx2/source/doc/objserv.cxx|1 -
 sfx2/source/doc/objstor.cxx|1 -
 sfx2/source/doc/templatedlg.cxx|1 -
 sfx2/source/inet/inettbc.cxx   |1 -
 sfx2/source/sidebar/ControllerItem.cxx |1 -
 sfx2/source/sidebar/Deck.cxx   |1 -
 sfx2/source/toolbox/tbxitem.cxx|3 ---
 sfx2/source/view/frame2.cxx|2 --
 sfx2/source/view/viewfrm2.cxx  |2 --
 sfx2/source/view/viewsh.cxx|1 -
 23 files changed, 31 deletions(-)

New commits:
commit b77ad21d445783d77697470796be5c43f9fc5cd3
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 14:07:48 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Tue Apr 2 08:32:20 2024 +0200

tdf#146619 Drop unused 'using namespace' in: sfx2/

Change-Id: I3748612644c9c4eb88d7fb6e2d512954de9c1002
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165538
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/sfx2/source/appl/appbas.cxx b/sfx2/source/appl/appbas.cxx
index d26f9577ee27..8929ccf908cf 100644
--- a/sfx2/source/appl/appbas.cxx
+++ b/sfx2/source/appl/appbas.cxx
@@ -48,7 +48,6 @@
 #include 
 
 using namespace ::com::sun::star;
-using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::script;
 
 using ::basic::BasicManagerRepository;
diff --git a/sfx2/source/appl/appbaslib.cxx b/sfx2/source/appl/appbaslib.cxx
index bfeafa1b1b60..2d32e59ee9bc 100644
--- a/sfx2/source/appl/appbaslib.cxx
+++ b/sfx2/source/appl/appbaslib.cxx
@@ -28,7 +28,6 @@
 #include 
 
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::script;
 using namespace ::com::sun::star::embed;
 
diff --git a/sfx2/source/appl/appcfg.cxx b/sfx2/source/appl/appcfg.cxx
index f18b93792236..074ad93b6f74 100644
--- a/sfx2/source/appl/appcfg.cxx
+++ b/sfx2/source/appl/appcfg.cxx
@@ -52,8 +52,6 @@
 #include "shutdownicon.hxx"
 
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::util;
-using namespace ::com::sun::star::beans;
 
 namespace {
 
diff --git a/sfx2/source/appl/appmisc.cxx b/sfx2/source/appl/appmisc.cxx
index 948a1de40fd0..01b278b16506 100644
--- a/sfx2/source/appl/appmisc.cxx
+++ b/sfx2/source/appl/appmisc.cxx
@@ -52,7 +52,6 @@ using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::util;
 using namespace ::com::sun::star::beans;
-using namespace ::com::sun::star::container;
 
 SFX_IMPL_INTERFACE(SfxApplication,SfxShell)
 
diff --git a/sfx2/source/appl/newhelp.cxx b/sfx2/source/appl/newhelp.cxx
index 7e51602371c1..925ed3a808ad 100644
--- a/sfx2/source/appl/newhelp.cxx
+++ b/sfx2/source/appl/newhelp.cxx
@@ -104,7 +104,6 @@ using namespace ::com::sun::star::text;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::util;
 using namespace ::com::sun::star::view;
-using namespace ::com::sun::star::ui;
 
 using namespace ::comphelper;
 
diff --git a/sfx2/source/appl/opengrf.cxx b/sfx2/source/appl/opengrf.cxx
index 3c94ca7ffbc5..16e0731f310b 100644
--- a/sfx2/source/appl/opengrf.cxx
+++ b/sfx2/source/appl/opengrf.cxx
@@ -44,7 +44,6 @@ using namespace ::com::sun::star;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::ui::dialogs;
 using namespace ::com::sun::star::uno;
-using namespace ::cppu;
 
 static TranslateId SvxOpenGrfErr2ResId( ErrCode err )
 {
diff --git a/sfx2/source/appl/sfxhelp.cxx b/sfx2/source/appl/sfxhelp.cxx
index b297c27578dd..85d60828d2ba 100644
--- a/sfx2/source/appl/sfxhelp.cxx
+++ b/sfx2/source/appl/sfxhelp.cxx
@@ -83,8 +83,6 @@
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::frame;
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::util;
-using namespace ::com::sun::star::lang;
 
 namespace {
 
diff --git a/sfx2/source/appl/sfxpicklist.cxx b/sfx2/source/appl/sfxpicklist.cxx
index 9453d8ee8b2c..bd7a0a091189 100644
--- a/sfx2/source/appl/sfxpicklist.cxx
+++ b/sfx2/source/appl/sfxpicklist.cxx
@@ -42,8 +42,6 @@
 
 
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::beans;
-using namespace ::com::sun::star::util;
 
 class SfxPickListImpl : public SfxListener
 {
diff --git a/sfx2/source/bastyp/helper.cxx b/sfx2/source/bastyp/helper.cxx
index 

core.git: desktop/source

2024-04-01 Thread Gabor Kelemen (via logerrit)
 desktop/source/app/app.cxx |1 -
 desktop/source/app/appinit.cxx |2 --
 desktop/source/deployment/misc/dp_resource.cxx |1 -
 3 files changed, 4 deletions(-)

New commits:
commit 9f3d3cec7cd3b8c6e79f52028c89e0abd9b5eec0
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 14:05:52 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Mon Apr 1 20:47:52 2024 +0200

tdf#146619 Drop unused 'using namespace' in: desktop/

Change-Id: I120471364834dfd0702b6ce15f79a8327cac26b3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165534
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index d59855e58b03..0a893b9adc28 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -157,7 +157,6 @@ using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::frame;
 using namespace ::com::sun::star::document;
-using namespace ::com::sun::star::view;
 using namespace ::com::sun::star::task;
 using namespace ::com::sun::star::system;
 using namespace ::com::sun::star::ui;
diff --git a/desktop/source/app/appinit.cxx b/desktop/source/app/appinit.cxx
index 1a0681f0d163..76bd04347ad6 100644
--- a/desktop/source/app/appinit.cxx
+++ b/desktop/source/app/appinit.cxx
@@ -51,8 +51,6 @@
 
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;
-using namespace ::com::sun::star::beans;
-using namespace ::com::sun::star::registry;
 using namespace ::com::sun::star::ucb;
 
 namespace desktop
diff --git a/desktop/source/deployment/misc/dp_resource.cxx 
b/desktop/source/deployment/misc/dp_resource.cxx
index 682c90e52458..30caef8d9a7d 100644
--- a/desktop/source/deployment/misc/dp_resource.cxx
+++ b/desktop/source/deployment/misc/dp_resource.cxx
@@ -22,7 +22,6 @@
 #include 
 
 using namespace ::com::sun::star;
-using namespace ::com::sun::star::uno;
 
 namespace dp_misc
 {


core.git: 2 commits - lingucomponent/source linguistic/source

2024-04-01 Thread Gabor Kelemen (via logerrit)
 lingucomponent/source/hyphenator/hyphen/hyphenimp.cxx |1 -
 lingucomponent/source/spellcheck/spell/sspellimp.cxx  |1 -
 lingucomponent/source/thesaurus/libnth/nthesdta.cxx   |1 -
 linguistic/source/convdicxml.cxx  |3 ---
 linguistic/source/hhconvdic.cxx   |1 -
 linguistic/source/hyphdta.cxx |1 -
 linguistic/source/lngopt.cxx  |1 -
 linguistic/source/spelldta.cxx|1 -
 8 files changed, 10 deletions(-)

New commits:
commit 5a408044f924b1d7d221994ba901dbfe52b00c22
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 14:05:20 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Mon Apr 1 20:47:37 2024 +0200

tdf#146619 Drop unused 'using namespace' in: lingucomponent/

Change-Id: I98f6edf1da4915ff43312c187e92891371833fc2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165533
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/lingucomponent/source/hyphenator/hyphen/hyphenimp.cxx 
b/lingucomponent/source/hyphenator/hyphen/hyphenimp.cxx
index 63a0255c015b..4007c1b42555 100644
--- a/lingucomponent/source/hyphenator/hyphen/hyphenimp.cxx
+++ b/lingucomponent/source/hyphenator/hyphen/hyphenimp.cxx
@@ -61,7 +61,6 @@
 // XML-header to query SPELLML support
 constexpr OUStringLiteral SPELLML_SUPPORT = u"";
 
-using namespace utl;
 using namespace osl;
 using namespace com::sun::star;
 using namespace com::sun::star::beans;
diff --git a/lingucomponent/source/spellcheck/spell/sspellimp.cxx 
b/lingucomponent/source/spellcheck/spell/sspellimp.cxx
index 075667f05bcb..468c9066aea0 100644
--- a/lingucomponent/source/spellcheck/spell/sspellimp.cxx
+++ b/lingucomponent/source/spellcheck/spell/sspellimp.cxx
@@ -52,7 +52,6 @@
 #include 
 #include 
 
-using namespace utl;
 using namespace osl;
 using namespace com::sun::star;
 using namespace com::sun::star::beans;
diff --git a/lingucomponent/source/thesaurus/libnth/nthesdta.cxx 
b/lingucomponent/source/thesaurus/libnth/nthesdta.cxx
index e69df4ab4c38..b84eb90173eb 100644
--- a/lingucomponent/source/thesaurus/libnth/nthesdta.cxx
+++ b/lingucomponent/source/thesaurus/libnth/nthesdta.cxx
@@ -25,7 +25,6 @@
 
 using namespace osl;
 using namespace com::sun::star;
-using namespace com::sun::star::beans;
 using namespace com::sun::star::lang;
 using namespace com::sun::star::uno;
 using namespace com::sun::star::linguistic2;
commit 5bf63cdc6ad7b8549610ddb31fde482ff2160161
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 14:05:00 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Mon Apr 1 20:47:27 2024 +0200

tdf#146619 Drop unused 'using namespace' in: linguistic/

Change-Id: Ib4df4e592e6b485dc087eddb49f59fc24c710380
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165532
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/linguistic/source/convdicxml.cxx b/linguistic/source/convdicxml.cxx
index 370629925a45..dd21122c0794 100644
--- a/linguistic/source/convdicxml.cxx
+++ b/linguistic/source/convdicxml.cxx
@@ -34,12 +34,9 @@
 #include "convdicxml.hxx"
 #include 
 
-using namespace utl;
 using namespace com::sun::star;
-using namespace com::sun::star::lang;
 using namespace com::sun::star::uno;
 using namespace com::sun::star::linguistic2;
-using namespace linguistic;
 
 
 constexpr OUStringLiteral XML_NAMESPACE_TCD_STRING = 
u"http://openoffice.org/2003/text-conversion-dictionary;;
diff --git a/linguistic/source/hhconvdic.cxx b/linguistic/source/hhconvdic.cxx
index e7712ee66be4..8752bbb046ea 100644
--- a/linguistic/source/hhconvdic.cxx
+++ b/linguistic/source/hhconvdic.cxx
@@ -36,7 +36,6 @@ using namespace com::sun::star::lang;
 using namespace com::sun::star::uno;
 using namespace com::sun::star::linguistic2;
 using namespace linguistic;
-using namespace i18n;
 
 
 constexpr OUString SN_HH_CONV_DICTIONARY = 
u"com.sun.star.linguistic2.HangulHanjaConversionDictionary"_ustr;
diff --git a/linguistic/source/hyphdta.cxx b/linguistic/source/hyphdta.cxx
index d19d8834006e..dc3787bc081e 100644
--- a/linguistic/source/hyphdta.cxx
+++ b/linguistic/source/hyphdta.cxx
@@ -27,7 +27,6 @@
 #include 
 #include 
 
-using namespace osl;
 using namespace com::sun::star;
 using namespace com::sun::star::lang;
 using namespace com::sun::star::uno;
diff --git a/linguistic/source/lngopt.cxx b/linguistic/source/lngopt.cxx
index 42bb6df95719..0ecf4d455a53 100644
--- a/linguistic/source/lngopt.cxx
+++ b/linguistic/source/lngopt.cxx
@@ -31,7 +31,6 @@
 #include 
 #include 
 
-using namespace utl;
 using namespace osl;
 using namespace com::sun::star;
 using namespace com::sun::star::beans;
diff --git a/linguistic/source/spelldta.cxx b/linguistic/source/spelldta.cxx
index 6aa99f8b70f6..91bd0c94cde8 100644
--- a/linguistic/source/spelldta.cxx
+++ b/linguistic/source/spelldta.cxx
@@ -34,7 +34,6 @@
 
 using namespace osl;
 using namespace com::sun::star;
-using namespace com::sun::star::beans;
 using 

core.git: framework/source

2024-04-01 Thread Gabor Kelemen (via logerrit)
 framework/source/fwe/xml/menuconfiguration.cxx  |1 -
 framework/source/fwe/xml/statusbarconfiguration.cxx |1 -
 framework/source/fwe/xml/toolboxconfiguration.cxx   |1 -
 framework/source/fwi/helper/mischelper.cxx  |2 --
 framework/source/helper/dockingareadefaultacceptor.cxx  |2 --
 framework/source/helper/ocomponentaccess.cxx|1 -
 framework/source/helper/ocomponentenumeration.cxx   |1 -
 framework/source/helper/oframes.cxx |2 --
 framework/source/uiconfiguration/imagemanager.cxx   |2 --
 framework/source/uiconfiguration/moduleuicfgsupplier.cxx|3 ---
 framework/source/uiconfiguration/uicategorydescription.cxx  |1 -
 framework/source/uielement/FixedImageToolbarController.cxx  |4 
 framework/source/uielement/FixedTextToolbarController.cxx   |3 ---
 framework/source/uielement/comboboxtoolbarcontroller.cxx|2 --
 framework/source/uielement/complextoolbarcontroller.cxx |1 -
 framework/source/uielement/controlmenucontroller.cxx|1 -
 framework/source/uielement/dropdownboxtoolbarcontroller.cxx |3 ---
 framework/source/uielement/edittoolbarcontroller.cxx|2 --
 framework/source/uielement/fontmenucontroller.cxx   |1 -
 framework/source/uielement/footermenucontroller.cxx |5 -
 framework/source/uielement/genericstatusbarcontroller.cxx   |2 --
 framework/source/uielement/headermenucontroller.cxx |1 -
 framework/source/uielement/imagebuttontoolbarcontroller.cxx |3 ---
 framework/source/uielement/langselectionmenucontroller.cxx  |1 -
 framework/source/uielement/langselectionstatusbarcontroller.cxx |2 --
 framework/source/uielement/macrosmenucontroller.cxx |3 ---
 framework/source/uielement/newmenucontroller.cxx|1 -
 framework/source/uielement/objectmenucontroller.cxx |3 ---
 framework/source/uielement/spinfieldtoolbarcontroller.cxx   |2 --
 framework/source/uielement/statusbarwrapper.cxx |1 -
 framework/source/uielement/statusindicatorinterfacewrapper.cxx  |1 -
 framework/source/uielement/togglebuttontoolbarcontroller.cxx|2 --
 framework/source/uielement/toolbarmodemenucontroller.cxx|3 ---
 framework/source/uifactory/addonstoolbarfactory.cxx |1 -
 framework/source/uifactory/menubarfactory.cxx   |1 -
 framework/source/uifactory/statusbarfactory.cxx |2 --
 framework/source/uifactory/toolbarfactory.cxx   |1 -
 framework/source/uifactory/uicontrollerfactory.cxx  |1 -
 38 files changed, 70 deletions(-)

New commits:
commit 7c18a0bb37fc2cd50bd3fa4386b02d88fbedb773
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 14:04:32 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Mon Apr 1 11:46:16 2024 +0200

tdf#146619 Drop unused 'using namespace' in: framework/

Change-Id: I03d2d3d07d0d71800df624510b5e20bd5e0588e1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165531
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/framework/source/fwe/xml/menuconfiguration.cxx 
b/framework/source/fwe/xml/menuconfiguration.cxx
index d2131c8a8deb..1047422ed775 100644
--- a/framework/source/fwe/xml/menuconfiguration.cxx
+++ b/framework/source/fwe/xml/menuconfiguration.cxx
@@ -34,7 +34,6 @@
 
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;
-using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::xml::sax;
 using namespace ::com::sun::star::container;
 using namespace ::com::sun::star::io;
diff --git a/framework/source/fwe/xml/statusbarconfiguration.cxx 
b/framework/source/fwe/xml/statusbarconfiguration.cxx
index ce974237b286..98130700ef26 100644
--- a/framework/source/fwe/xml/statusbarconfiguration.cxx
+++ b/framework/source/fwe/xml/statusbarconfiguration.cxx
@@ -29,7 +29,6 @@
 
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::xml::sax;
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::io;
 using namespace ::com::sun::star::container;
 
diff --git a/framework/source/fwe/xml/toolboxconfiguration.cxx 
b/framework/source/fwe/xml/toolboxconfiguration.cxx
index d9e34baabc98..c88b3c01da2d 100644
--- a/framework/source/fwe/xml/toolboxconfiguration.cxx
+++ b/framework/source/fwe/xml/toolboxconfiguration.cxx
@@ -29,7 +29,6 @@
 
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::xml::sax;
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::io;
 using namespace ::com::sun::star::container;
 
diff --git a/framework/source/fwi/helper/mischelper.cxx 
b/framework/source/fwi/helper/mischelper.cxx
index e9c664d474df..af83c5867356 

core.git: drawinglayer/source

2024-04-01 Thread Gabor Kelemen (via logerrit)
 drawinglayer/source/tools/emfpimageattributes.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit df58dfef115fe4589dfbfd6e6d348f24ce7ef2e9
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 14:02:42 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Mon Apr 1 11:45:46 2024 +0200

tdf#146619 Drop unused 'using namespace' in: drawinglayer/

Change-Id: I6d034b6c191885b25ad34f0d75ed870970b5fd77
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165527
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/drawinglayer/source/tools/emfpimageattributes.cxx 
b/drawinglayer/source/tools/emfpimageattributes.cxx
index c13da361bf1a..11c1f47173e4 100644
--- a/drawinglayer/source/tools/emfpimageattributes.cxx
+++ b/drawinglayer/source/tools/emfpimageattributes.cxx
@@ -22,7 +22,6 @@
 #include "emfpimageattributes.hxx"
 
 using namespace ::com::sun::star;
-using namespace ::basegfx;
 
 namespace emfplushelper
 {


core.git: 2 commits - accessibility/source connectivity/source

2024-04-01 Thread Gabor Kelemen (via logerrit)
 accessibility/source/standard/accessiblemenuitemcomponent.cxx  |1 -
 accessibility/source/standard/vclxaccessiblebutton.cxx |1 -
 accessibility/source/standard/vclxaccessiblecheckbox.cxx   |1 -
 accessibility/source/standard/vclxaccessiblecombobox.cxx   |2 
--
 accessibility/source/standard/vclxaccessibledropdowncombobox.cxx   |2 
--
 accessibility/source/standard/vclxaccessibledropdownlistbox.cxx|2 
--
 accessibility/source/standard/vclxaccessiblefixedtext.cxx  |2 
--
 accessibility/source/standard/vclxaccessibleheaderbar.cxx  |3 
---
 accessibility/source/standard/vclxaccessiblelist.cxx   |1 -
 accessibility/source/standard/vclxaccessiblelistbox.cxx|2 
--
 accessibility/source/standard/vclxaccessiblemenuseparator.cxx  |1 -
 accessibility/source/standard/vclxaccessibleradiobutton.cxx|1 -
 accessibility/source/standard/vclxaccessiblescrollbar.cxx  |1 -
 accessibility/source/standard/vclxaccessibletextfield.cxx  |1 -
 connectivity/source/commontools/CommonTools.cxx|3 
---
 connectivity/source/commontools/FDatabaseMetaDataResultSet.cxx |1 -
 connectivity/source/commontools/FDatabaseMetaDataResultSetMetaData.cxx |2 
--
 connectivity/source/commontools/TColumnsHelper.cxx |2 
--
 connectivity/source/commontools/TConnection.cxx|1 -
 connectivity/source/commontools/TIndex.cxx |3 
---
 connectivity/source/commontools/TIndexColumns.cxx  |2 
--
 connectivity/source/commontools/TIndexes.cxx   |1 -
 connectivity/source/commontools/TKey.cxx   |3 
---
 connectivity/source/commontools/TKeyColumns.cxx|2 
--
 connectivity/source/commontools/TKeys.cxx  |1 -
 connectivity/source/commontools/TPrivilegesResultSet.cxx   |2 
--
 connectivity/source/commontools/dbconversion.cxx   |1 -
 connectivity/source/commontools/filtermanager.cxx  |3 
---
 connectivity/source/commontools/parameters.cxx |1 -
 connectivity/source/cpool/ZConnectionPool.cxx  |1 -
 connectivity/source/cpool/ZConnectionWrapper.cxx   |1 -
 connectivity/source/drivers/calc/CCatalog.cxx  |1 -
 connectivity/source/drivers/calc/CDatabaseMetaData.cxx |1 -
 connectivity/source/drivers/calc/CTable.cxx|2 
--
 connectivity/source/drivers/calc/CTables.cxx   |5 
-
 connectivity/source/drivers/component/CColumns.cxx |4 

 connectivity/source/drivers/component/CPreparedStatement.cxx   |1 -
 connectivity/source/drivers/component/CStatement.cxx   |1 -
 connectivity/source/drivers/component/CTable.cxx   |2 
--
 connectivity/source/drivers/dbase/DCatalog.cxx |1 -
 connectivity/source/drivers/dbase/DColumns.cxx |4 

 connectivity/source/drivers/dbase/DConnection.cxx  |2 
--
 connectivity/source/drivers/dbase/DIndex.cxx   |3 
---
 connectivity/source/drivers/dbase/DIndexColumns.cxx|2 
--
 connectivity/source/drivers/dbase/DIndexes.cxx |6 
--
 connectivity/source/drivers/dbase/DPreparedStatement.cxx   |1 -
 connectivity/source/drivers/dbase/DStatement.cxx   |1 -
 connectivity/source/drivers/dbase/DTables.cxx  |2 
--
 connectivity/source/drivers/evoab2/NCatalog.cxx|3 
---
 connectivity/source/drivers/evoab2/NColumns.cxx|4 

 connectivity/source/drivers/evoab2/NConnection.cxx |1 -
 connectivity/source/drivers/evoab2/NDatabaseMetaData.cxx   |3 
---
 connectivity/source/drivers/evoab2/NDriver.cxx |2 
--
 connectivity/source/drivers/evoab2/NPreparedStatement.cxx  |1 -
 connectivity/source/drivers/evoab2/NResultSet.cxx  |1 -
 connectivity/source/drivers/evoab2/NResultSetMetaData.cxx  |1 -
 connectivity/source/drivers/evoab2/NStatement.cxx  |1 -
 connectivity/source/drivers/evoab2/NTable.cxx  |5 
-
 connectivity/source/drivers/evoab2/NTables.cxx |5 
-
 connectivity/source/drivers/file/FCatalog.cxx  |2 
--
 connectivity/source/drivers/file/FColumns.cxx  

core.git: xmlscript/qa xmlscript/source

2024-04-01 Thread Gabor Kelemen (via logerrit)
 xmlscript/qa/cppunit/test.cxx   |1 -
 xmlscript/source/xml_helper/xml_byteseq.cxx |1 -
 xmlscript/source/xml_helper/xml_impctx.cxx  |1 -
 3 files changed, 3 deletions(-)

New commits:
commit d7acb0fc227732d4537111eb88308bca922b1bc2
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 14:03:18 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Mon Apr 1 10:03:25 2024 +0200

tdf#146619 Drop unused 'using namespace' in: xmlscript/

Change-Id: Ic9874b77bdbb1d30fb587c5c8bbd62e4811c71e3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165528
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/xmlscript/qa/cppunit/test.cxx b/xmlscript/qa/cppunit/test.cxx
index f29c9bb7ba59..6db22be43738 100644
--- a/xmlscript/qa/cppunit/test.cxx
+++ b/xmlscript/qa/cppunit/test.cxx
@@ -33,7 +33,6 @@
 #include 
 #include 
 
-using namespace ::cppu;
 using namespace ::com::sun::star::uno;
 
 using namespace ::com::sun::star;
diff --git a/xmlscript/source/xml_helper/xml_byteseq.cxx 
b/xmlscript/source/xml_helper/xml_byteseq.cxx
index 2ae8ecea1661..a4cca34e2649 100644
--- a/xmlscript/source/xml_helper/xml_byteseq.cxx
+++ b/xmlscript/source/xml_helper/xml_byteseq.cxx
@@ -24,7 +24,6 @@
 #include 
 #include 
 
-using namespace osl;
 using namespace com::sun::star;
 using namespace com::sun::star::uno;
 
diff --git a/xmlscript/source/xml_helper/xml_impctx.cxx 
b/xmlscript/source/xml_helper/xml_impctx.cxx
index 27a5e746a854..e9255e91a3bc 100644
--- a/xmlscript/source/xml_helper/xml_impctx.cxx
+++ b/xmlscript/source/xml_helper/xml_impctx.cxx
@@ -36,7 +36,6 @@
 #include 
 #include 
 
-using namespace ::osl;
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
 


core.git: sdext/IwyuFilter_sdext.yaml sdext/qa sdext/source

2024-03-31 Thread Gabor Kelemen (via logerrit)
 sdext/IwyuFilter_sdext.yaml|2 +-
 sdext/qa/unit/pdfimport.cxx|1 -
 sdext/source/minimizer/fileopendialog.cxx  |1 -
 sdext/source/minimizer/impoptimizer.cxx|1 -
 sdext/source/minimizer/informationdialog.cxx   |3 ---
 sdext/source/minimizer/optimizerdialog.cxx |3 ---
 sdext/source/minimizer/optimizerdialogcontrols.cxx |3 ---
 sdext/source/minimizer/pagecollector.cxx   |2 --
 8 files changed, 1 insertion(+), 15 deletions(-)

New commits:
commit 3b85fd8a27edb7b9a0d92bad7969ef551d11450f
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 14:01:43 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Sun Mar 31 19:22:57 2024 +0200

tdf#146619 Drop unused 'using namespace' in: sdext/

Change-Id: I8c5012958f6e59ec11c8a7bd52592e30cce4117a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165525
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/sdext/IwyuFilter_sdext.yaml b/sdext/IwyuFilter_sdext.yaml
index 9a0aaea804cc..2b00c256b4d2 100644
--- a/sdext/IwyuFilter_sdext.yaml
+++ b/sdext/IwyuFilter_sdext.yaml
@@ -1,5 +1,5 @@
 ---
-assumeFilename: sdext/source/presenter/PresenterSlideSorter.cxx
+assumeFilename: sdext/source/pdfimport/pdfiadaptor.cxx
 excludelist:
 sdext/source/pdfimport/odf/odfemitter.cxx:
 # Actually in use
diff --git a/sdext/qa/unit/pdfimport.cxx b/sdext/qa/unit/pdfimport.cxx
index 18988d6845de..462edf2e7772 100644
--- a/sdext/qa/unit/pdfimport.cxx
+++ b/sdext/qa/unit/pdfimport.cxx
@@ -54,7 +54,6 @@
 #include 
 #include 
 
-using namespace ::pdfparse;
 using namespace ::pdfi;
 using namespace ::com::sun::star;
 
diff --git a/sdext/source/minimizer/fileopendialog.cxx 
b/sdext/source/minimizer/fileopendialog.cxx
index 44dfb51bc74f..7ae877b13549 100644
--- a/sdext/source/minimizer/fileopendialog.cxx
+++ b/sdext/source/minimizer/fileopendialog.cxx
@@ -35,7 +35,6 @@ using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::container;
-using namespace ::com::sun::star::view;
 using namespace ::com::sun::star::ui::dialogs;
 
 FileOpenDialog::FileOpenDialog( const Reference< XComponentContext >& 
rxContext )
diff --git a/sdext/source/minimizer/impoptimizer.cxx 
b/sdext/source/minimizer/impoptimizer.cxx
index c46617175e1c..abf54e296a77 100644
--- a/sdext/source/minimizer/impoptimizer.cxx
+++ b/sdext/source/minimizer/impoptimizer.cxx
@@ -63,7 +63,6 @@ using namespace ::com::sun::star::frame;
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::drawing;
 using namespace ::com::sun::star::graphic;
-using namespace ::com::sun::star::document;
 using namespace ::com::sun::star::container;
 using namespace ::com::sun::star::presentation;
 
diff --git a/sdext/source/minimizer/informationdialog.cxx 
b/sdext/source/minimizer/informationdialog.cxx
index caea0fc1d787..9872990a0f45 100644
--- a/sdext/source/minimizer/informationdialog.cxx
+++ b/sdext/source/minimizer/informationdialog.cxx
@@ -29,13 +29,10 @@
 #include 
 
 using namespace ::com::sun::star;
-using namespace ::com::sun::star::ui;
 using namespace ::com::sun::star::awt;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::util;
 using namespace ::com::sun::star::lang;
-using namespace ::com::sun::star::beans;
-using namespace ::com::sun::star::container;
 
 static OUString ImpValueOfInMB( sal_Int64 rVal )
 {
diff --git a/sdext/source/minimizer/optimizerdialog.cxx 
b/sdext/source/minimizer/optimizerdialog.cxx
index 773970a41b05..7efef618af9b 100644
--- a/sdext/source/minimizer/optimizerdialog.cxx
+++ b/sdext/source/minimizer/optimizerdialog.cxx
@@ -47,13 +47,10 @@
 using namespace ::com::sun::star::io;
 using namespace ::com::sun::star::ui;
 using namespace ::com::sun::star::awt;
-using namespace ::com::sun::star::ucb;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::util;
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::frame;
 using namespace ::com::sun::star::beans;
-using namespace ::com::sun::star::container;
 
 IntroPage::IntroPage(weld::Container* pPage, OptimizerDialog& rOptimizerDialog)
 : vcl::OWizardPage(pPage, , 
"modules/simpress/ui/pmintropage.ui", "PMIntroPage")
diff --git a/sdext/source/minimizer/optimizerdialogcontrols.cxx 
b/sdext/source/minimizer/optimizerdialogcontrols.cxx
index 5ed2dd942b7e..d2c4e49f3b95 100644
--- a/sdext/source/minimizer/optimizerdialogcontrols.cxx
+++ b/sdext/source/minimizer/optimizerdialogcontrols.cxx
@@ -37,10 +37,7 @@
 #include 
 #include 
 
-using namespace ::com::sun::star::awt;
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::util;
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::frame;
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::drawing;
diff --git 

core.git: fpicker/source

2024-03-31 Thread Gabor Kelemen (via logerrit)
 fpicker/source/office/OfficeFilePicker.cxx   |1 -
 fpicker/source/office/OfficeFolderPicker.cxx |1 -
 fpicker/source/office/fileview.cxx   |1 -
 fpicker/source/office/fpsmartcontent.cxx |1 -
 fpicker/source/office/iodlg.cxx  |1 -
 fpicker/source/office/iodlgimp.cxx   |2 --
 6 files changed, 7 deletions(-)

New commits:
commit 193bb41859a8b29904685bc6c544809fcb4b8f50
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 14:02:09 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Sun Mar 31 19:22:40 2024 +0200

tdf#146619 Drop unused 'using namespace' in: fpicker/

Change-Id: Ie090afbe19bffc493918ca19318ed16ac569bb83
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165526
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/fpicker/source/office/OfficeFilePicker.cxx 
b/fpicker/source/office/OfficeFilePicker.cxx
index 723a8a279918..c0ba40632a0c 100644
--- a/fpicker/source/office/OfficeFilePicker.cxx
+++ b/fpicker/source/office/OfficeFilePicker.cxx
@@ -45,7 +45,6 @@ using namespace ::com::sun::star::ui::dialogs;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::awt;
-using namespace ::utl;
 
 
 struct FilterEntry
diff --git a/fpicker/source/office/OfficeFolderPicker.cxx 
b/fpicker/source/office/OfficeFolderPicker.cxx
index c941d6cb63c3..779bbffda7ad 100644
--- a/fpicker/source/office/OfficeFolderPicker.cxx
+++ b/fpicker/source/office/OfficeFolderPicker.cxx
@@ -30,7 +30,6 @@
 using namespace ::com::sun::star::container;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::beans;
 
 SvtFolderPicker::SvtFolderPicker()
 {
diff --git a/fpicker/source/office/fileview.cxx 
b/fpicker/source/office/fileview.cxx
index 1fa1c4dafcd3..6a77f9154ac8 100644
--- a/fpicker/source/office/fileview.cxx
+++ b/fpicker/source/office/fileview.cxx
@@ -64,7 +64,6 @@
 #include 
 #include "fileview.hxx"
 
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::sdbc;
 using namespace ::com::sun::star::task;
 using namespace ::com::sun::star::ucb;
diff --git a/fpicker/source/office/fpsmartcontent.cxx 
b/fpicker/source/office/fpsmartcontent.cxx
index 4cc504ddaa14..66f531ec5732 100644
--- a/fpicker/source/office/fpsmartcontent.cxx
+++ b/fpicker/source/office/fpsmartcontent.cxx
@@ -38,7 +38,6 @@ namespace svt
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::task;
 using namespace ::com::sun::star::ucb;
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::container;
 
 
diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx
index b3e279f6b471..801bf0080917 100644
--- a/fpicker/source/office/iodlg.cxx
+++ b/fpicker/source/office/iodlg.cxx
@@ -81,7 +81,6 @@
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::ui::dialogs;
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::ucb;
 using namespace ::com::sun::star::container;
 using namespace ::com::sun::star::task;
diff --git a/fpicker/source/office/iodlgimp.cxx 
b/fpicker/source/office/iodlgimp.cxx
index 5b2a67e38de5..1802d9c8d65b 100644
--- a/fpicker/source/office/iodlgimp.cxx
+++ b/fpicker/source/office/iodlgimp.cxx
@@ -33,8 +33,6 @@
 #include 
 
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::lang;
-using namespace ::utl;
 
 SvtFileDialogFilter_Impl::SvtFileDialogFilter_Impl( OUString aName, OUString 
aType )
 : m_aName(std::move( aName ))


core.git: vcl/qt5 vcl/source vcl/unx

2024-03-31 Thread Gabor Kelemen (via logerrit)
 vcl/qt5/QtAccessibleWidget.cxx  |1 -
 vcl/source/app/svdata.cxx   |2 --
 vcl/source/cnttype/mcnttfactory.cxx |1 -
 vcl/source/control/fmtfield.cxx |1 -
 vcl/source/filter/FilterConfigItem.cxx  |1 -
 vcl/source/font/fontmetric.cxx  |1 -
 vcl/source/gdi/configsettings.cxx   |1 -
 vcl/source/gdi/oldprintadaptor.cxx  |1 -
 vcl/source/helper/displayconnectiondispatch.cxx |1 -
 vcl/source/helper/svtaccessiblefactory.cxx  |1 -
 vcl/source/window/accessibility.cxx |1 -
 vcl/source/window/printdlg.cxx  |1 -
 vcl/source/window/stacking.cxx  |1 -
 vcl/source/window/syswin.cxx|1 -
 vcl/unx/generic/app/i18n_im.cxx |2 --
 vcl/unx/generic/dtrans/X11_clipboard.cxx|1 -
 vcl/unx/generic/dtrans/X11_service.cxx  |1 -
 vcl/unx/generic/dtrans/X11_transferable.cxx |2 --
 vcl/unx/generic/dtrans/config.cxx   |1 -
 vcl/unx/generic/fontmanager/fontconfig.cxx  |1 -
 vcl/unx/generic/fontmanager/fontmanager.cxx |3 ---
 vcl/unx/generic/printer/cpdmgr.cxx  |1 -
 22 files changed, 27 deletions(-)

New commits:
commit da4f91bd4042f2c0ddd65c76d4ad5c35dbf3e1aa
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 14:00:41 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Sun Mar 31 11:31:09 2024 +0200

tdf#146619 Drop unused 'using namespace' in: vcl/

Change-Id: Id25d5e3dbf84dea1f9aca5a6ec921d30cbe84bf7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165524
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/vcl/qt5/QtAccessibleWidget.cxx b/vcl/qt5/QtAccessibleWidget.cxx
index 790e200929b1..4065e6ca2307 100644
--- a/vcl/qt5/QtAccessibleWidget.cxx
+++ b/vcl/qt5/QtAccessibleWidget.cxx
@@ -58,7 +58,6 @@
 
 using namespace css;
 using namespace css::accessibility;
-using namespace css::beans;
 using namespace css::uno;
 
 QtAccessibleWidget::QtAccessibleWidget(const Reference 
xAccessible, QObject* pObject)
diff --git a/vcl/source/app/svdata.cxx b/vcl/source/app/svdata.cxx
index e919bfda7c3d..26bf023ce848 100644
--- a/vcl/source/app/svdata.cxx
+++ b/vcl/source/app/svdata.cxx
@@ -57,8 +57,6 @@
 #include 
 
 using namespace com::sun::star::uno;
-using namespace com::sun::star::lang;
-using namespace com::sun::star::awt;
 
 namespace
 {
diff --git a/vcl/source/cnttype/mcnttfactory.cxx 
b/vcl/source/cnttype/mcnttfactory.cxx
index 4a3e6fbb4d95..de8f3489d95a 100644
--- a/vcl/source/cnttype/mcnttfactory.cxx
+++ b/vcl/source/cnttype/mcnttfactory.cxx
@@ -22,7 +22,6 @@
 #include "mcnttfactory.hxx"
 #include "mcnttype.hxx"
 
-using namespace ::osl;
 using namespace ::cppu;
 using namespace com::sun::star::uno;
 using namespace com::sun::star::lang;
diff --git a/vcl/source/control/fmtfield.cxx b/vcl/source/control/fmtfield.cxx
index e8b02a29c111..b8c561e206b3 100644
--- a/vcl/source/control/fmtfield.cxx
+++ b/vcl/source/control/fmtfield.cxx
@@ -45,7 +45,6 @@
 #include 
 
 using namespace ::com::sun::star::lang;
-using namespace ::com::sun::star::util;
 
 // hmm. No support for regular expression. Well, I always (not really :) 
wanted to write a finite automat
 // so here comes a finite automat ...
diff --git a/vcl/source/filter/FilterConfigItem.cxx 
b/vcl/source/filter/FilterConfigItem.cxx
index 41eaac04e1d4..5137a2f87016 100644
--- a/vcl/source/filter/FilterConfigItem.cxx
+++ b/vcl/source/filter/FilterConfigItem.cxx
@@ -39,7 +39,6 @@ using namespace ::com::sun::star::lang  ;   // 
XMultiServiceFactory
 using namespace ::com::sun::star::beans ;   // PropertyValue
 using namespace ::com::sun::star::uno   ;   // Reference
 using namespace ::com::sun::star::util  ;   // XChangesBatch
-using namespace ::com::sun::star::awt   ;   // Size
 using namespace ::com::sun::star::container ;
 using namespace ::com::sun::star::configuration;
 using namespace ::com::sun::star::task  ;   // XStatusIndicator
diff --git a/vcl/source/font/fontmetric.cxx b/vcl/source/font/fontmetric.cxx
index 3c6e5be96f8a..6ce4b1309e43 100644
--- a/vcl/source/font/fontmetric.cxx
+++ b/vcl/source/font/fontmetric.cxx
@@ -40,7 +40,6 @@
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
 using namespace ::rtl;
-using namespace ::utl;
 
 FontMetric::FontMetric()
 :   mnAscent( 0 ),
diff --git a/vcl/source/gdi/configsettings.cxx 
b/vcl/source/gdi/configsettings.cxx
index 5586f67a610a..b39adbf54118 100644
--- a/vcl/source/gdi/configsettings.cxx
+++ b/vcl/source/gdi/configsettings.cxx
@@ -30,7 +30,6 @@
 using namespace utl;
 using namespace vcl;
 using namespace com::sun::star::uno;
-using namespace com::sun::star::lang;
 using namespace com::sun::star::beans;
 using namespace com::sun::star::container;
 
diff --git a/vcl/source/gdi/oldprintadaptor.cxx 

core.git: 2 commits - package/source svl/source

2024-03-31 Thread Gabor Kelemen (via logerrit)
 package/source/manifest/ManifestReader.cxx |1 -
 package/source/manifest/ManifestWriter.cxx |1 -
 svl/source/config/cjkoptions.cxx   |2 --
 svl/source/numbers/supservs.cxx|1 -
 svl/source/passwordcontainer/passwordcontainer.cxx |2 --
 5 files changed, 7 deletions(-)

New commits:
commit 35fbbbe12d101a626fcb1679cc6c0d79922a4cc3
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 14:00:11 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Sun Mar 31 09:41:44 2024 +0200

tdf#146619 Drop unused 'using namespace' in: svl/

Change-Id: I5629f6d5940ebc76be72970606111459d21ee1fb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165523
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/svl/source/config/cjkoptions.cxx b/svl/source/config/cjkoptions.cxx
index e43d379f7e66..3cc774e4268c 100644
--- a/svl/source/config/cjkoptions.cxx
+++ b/svl/source/config/cjkoptions.cxx
@@ -26,8 +26,6 @@
 #include 
 #include 
 
-using namespace ::com::sun::star::uno;
-
 static void SvtCJKOptions_Load();
 
 namespace SvtCJKOptions
diff --git a/svl/source/numbers/supservs.cxx b/svl/source/numbers/supservs.cxx
index 5a51158a2beb..e5402f0fdb06 100644
--- a/svl/source/numbers/supservs.cxx
+++ b/svl/source/numbers/supservs.cxx
@@ -34,7 +34,6 @@ using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::util;
-using namespace ::utl;
 
 
 
SvNumberFormatsSupplierServiceObject::SvNumberFormatsSupplierServiceObject(css::uno::Reference<
 css::uno::XComponentContext > _xORB)
diff --git a/svl/source/passwordcontainer/passwordcontainer.cxx 
b/svl/source/passwordcontainer/passwordcontainer.cxx
index 68afc328935d..4d93a8aa3a7e 100644
--- a/svl/source/passwordcontainer/passwordcontainer.cxx
+++ b/svl/source/passwordcontainer/passwordcontainer.cxx
@@ -43,11 +43,9 @@
 #include 
 #include 
 
-using namespace osl;
 using namespace utl;
 using namespace com::sun::star;
 using namespace com::sun::star::uno;
-using namespace com::sun::star::registry;
 using namespace com::sun::star::lang;
 using namespace com::sun::star::task;
 using namespace com::sun::star::ucb;
commit 9a5b67ea271afc4449638207eecc52e88a7a891e
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 13:59:40 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Sun Mar 31 09:41:32 2024 +0200

tdf#146619 Drop unused 'using namespace' in: package/

Change-Id: I635a5c4bc988bff5a99f7d8487eb7c0f67c15d0e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165522
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/package/source/manifest/ManifestReader.cxx 
b/package/source/manifest/ManifestReader.cxx
index 2a60feff02d4..d21748889082 100644
--- a/package/source/manifest/ManifestReader.cxx
+++ b/package/source/manifest/ManifestReader.cxx
@@ -33,7 +33,6 @@ using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::io;
 using namespace ::com::sun::star::lang;
-using namespace ::com::sun::star::registry;
 using namespace ::com::sun::star::packages;
 using namespace ::com::sun::star::xml::sax;
 
diff --git a/package/source/manifest/ManifestWriter.cxx 
b/package/source/manifest/ManifestWriter.cxx
index 5515cc26df07..e4a4b480dfbb 100644
--- a/package/source/manifest/ManifestWriter.cxx
+++ b/package/source/manifest/ManifestWriter.cxx
@@ -33,7 +33,6 @@ using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::io;
 using namespace ::com::sun::star::lang;
-using namespace ::com::sun::star::registry;
 using namespace ::com::sun::star::packages;
 using namespace ::com::sun::star::xml::sax;
 


core.git: 2 commits - sax/source unoxml/source

2024-03-31 Thread Gabor Kelemen (via logerrit)
 sax/source/expatwrap/sax_expat.cxx |1 -
 sax/source/expatwrap/saxwriter.cxx |2 --
 sax/source/tools/converter.cxx |1 -
 unoxml/source/xpath/xpathapi.cxx   |1 -
 4 files changed, 5 deletions(-)

New commits:
commit 828ad91196826cda970f3894de516f91a82fd7de
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 13:59:24 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Sun Mar 31 09:41:18 2024 +0200

tdf#146619 Drop unused 'using namespace' in: sax/

Change-Id: I1959402cb06f051ffe5f4a7e2e9f591b4908ea21
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165521
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/sax/source/expatwrap/sax_expat.cxx 
b/sax/source/expatwrap/sax_expat.cxx
index 9a82b8703644..885e2910ba0c 100644
--- a/sax/source/expatwrap/sax_expat.cxx
+++ b/sax/source/expatwrap/sax_expat.cxx
@@ -46,7 +46,6 @@
 #include 
 #include 
 
-using namespace ::osl;
 using namespace ::cppu;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::xml::sax;
diff --git a/sax/source/expatwrap/saxwriter.cxx 
b/sax/source/expatwrap/saxwriter.cxx
index 55608101faf5..c1f9db44330d 100644
--- a/sax/source/expatwrap/saxwriter.cxx
+++ b/sax/source/expatwrap/saxwriter.cxx
@@ -43,12 +43,10 @@
 
 #include 
 
-using namespace ::osl;
 using namespace ::cppu;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::xml::sax;
-using namespace ::com::sun::star::util;
 using namespace ::com::sun::star::io;
 
 #define LINEFEED 10
diff --git a/sax/source/tools/converter.cxx b/sax/source/tools/converter.cxx
index 818d04a9bd1a..09156a0a9405 100644
--- a/sax/source/tools/converter.cxx
+++ b/sax/source/tools/converter.cxx
@@ -42,7 +42,6 @@
 using namespace com::sun::star;
 using namespace com::sun::star::uno;
 using namespace com::sun::star::util;
-using namespace ::com::sun::star::i18n;
 
 
 namespace sax {
commit 2f068b2182955362526641da3b1e9f3207aab4b3
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 13:31:26 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Sun Mar 31 09:41:07 2024 +0200

tdf#146619 Drop unused 'using namespace' in: unoxml/

Change-Id: I66da7093f1ccb144e2831c6e20220cbd27e58c46
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165518
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/unoxml/source/xpath/xpathapi.cxx b/unoxml/source/xpath/xpathapi.cxx
index c2b753783176..e20282565644 100644
--- a/unoxml/source/xpath/xpathapi.cxx
+++ b/unoxml/source/xpath/xpathapi.cxx
@@ -41,7 +41,6 @@
 #include 
 #include 
 
-using namespace css::io;
 using namespace css::uno;
 using namespace css::xml::dom;
 using namespace css::xml::xpath;


core.git: shell/source

2024-03-30 Thread Gabor Kelemen (via logerrit)
 shell/source/cmdmail/cmdmailmsg.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit f7ccf46b13ddf4501d5952ec38b1c680398f2101
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 13:30:24 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Sat Mar 30 20:50:06 2024 +0100

tdf#146619 Drop unused 'using namespace' in: shell/

Change-Id: I4194a1e3b92ec5bd25a8f313f7ff441566079bac
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165517
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/shell/source/cmdmail/cmdmailmsg.cxx 
b/shell/source/cmdmail/cmdmailmsg.cxx
index 8d6c0865a609..b62d99ab9a0b 100644
--- a/shell/source/cmdmail/cmdmailmsg.cxx
+++ b/shell/source/cmdmail/cmdmailmsg.cxx
@@ -22,7 +22,6 @@
 using com::sun::star::container::NoSuchElementException;
 using com::sun::star::container::XNameAccess;
 
-using namespace cppu;
 using namespace com::sun::star::uno;
 
 


core.git: UnoControls/source

2024-03-30 Thread Gabor Kelemen (via logerrit)
 UnoControls/source/controls/progressbar.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit a98fd3a9ae8740ba66b5b98dd18c27a83b475efc
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 13:32:06 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Sat Mar 30 19:54:17 2024 +0100

tdf#146619 Drop unused 'using namespace' in: UnoControls/

Change-Id: I6739c80a76289b042607a5b50ac04482f65b5a40
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165520
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/UnoControls/source/controls/progressbar.cxx 
b/UnoControls/source/controls/progressbar.cxx
index 1cf0bc08a36f..85653c1cc1a3 100644
--- a/UnoControls/source/controls/progressbar.cxx
+++ b/UnoControls/source/controls/progressbar.cxx
@@ -27,7 +27,6 @@
 using namespace ::cppu;
 using namespace ::osl;
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::awt;
 
 namespace unocontrols {


core.git: unotools/source

2024-03-30 Thread Gabor Kelemen (via logerrit)
 unotools/source/config/compatibility.cxx|2 --
 unotools/source/config/confignode.cxx   |1 -
 unotools/source/config/configvaluecontainer.cxx |1 -
 unotools/source/config/eventcfg.cxx |1 -
 unotools/source/config/fontcfg.cxx  |1 -
 unotools/source/config/pathoptions.cxx  |1 -
 unotools/source/config/saveopt.cxx  |3 ---
 unotools/source/config/syslocaleoptions.cxx |1 -
 unotools/source/misc/syslocale.cxx  |1 -
 unotools/source/ucbhelper/localfilehelper.cxx   |1 -
 10 files changed, 13 deletions(-)

New commits:
commit 8c84193d101dba72c74b92e8afa05c085b063713
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 13:31:53 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Sat Mar 30 19:53:58 2024 +0100

tdf#146619 Drop unused 'using namespace' in: unotools/

Change-Id: I7af4b514dac89b3dbacdc21705a90a91458b4487
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165519
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/unotools/source/config/compatibility.cxx 
b/unotools/source/config/compatibility.cxx
index 2597d79a084e..8451759e1328 100644
--- a/unotools/source/config/compatibility.cxx
+++ b/unotools/source/config/compatibility.cxx
@@ -31,8 +31,6 @@
 
 #include 
 
-using namespace ::utl;
-using namespace ::osl;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::beans;
 
diff --git a/unotools/source/config/confignode.cxx 
b/unotools/source/config/confignode.cxx
index 93b89532072d..12d939e03159 100644
--- a/unotools/source/config/confignode.cxx
+++ b/unotools/source/config/confignode.cxx
@@ -39,7 +39,6 @@ namespace utl
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::util;
-using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::container;
 using namespace ::com::sun::star::configuration;
 
diff --git a/unotools/source/config/configvaluecontainer.cxx 
b/unotools/source/config/configvaluecontainer.cxx
index 6852674a95fa..0ac1be06f4db 100644
--- a/unotools/source/config/configvaluecontainer.cxx
+++ b/unotools/source/config/configvaluecontainer.cxx
@@ -31,7 +31,6 @@ namespace utl
 {
 
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::lang;
 
 //= NodeValueAccessor
 
diff --git a/unotools/source/config/eventcfg.cxx 
b/unotools/source/config/eventcfg.cxx
index 49232f9026fc..c6c0f63e42a6 100644
--- a/unotools/source/config/eventcfg.cxx
+++ b/unotools/source/config/eventcfg.cxx
@@ -38,7 +38,6 @@
 #include 
 
 using namespace ::utl;
-using namespace ::osl;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star;
 
diff --git a/unotools/source/config/fontcfg.cxx 
b/unotools/source/config/fontcfg.cxx
index 295a8742ffbb..14bfb646fb75 100644
--- a/unotools/source/config/fontcfg.cxx
+++ b/unotools/source/config/fontcfg.cxx
@@ -41,7 +41,6 @@
 using namespace utl;
 using namespace com::sun::star::uno;
 using namespace com::sun::star::lang;
-using namespace com::sun::star::beans;
 using namespace com::sun::star::container;
 using namespace com::sun::star::configuration;
 
diff --git a/unotools/source/config/pathoptions.cxx 
b/unotools/source/config/pathoptions.cxx
index 4234ec903df9..be02f7c8f2ac 100644
--- a/unotools/source/config/pathoptions.cxx
+++ b/unotools/source/config/pathoptions.cxx
@@ -50,7 +50,6 @@ using namespace utl;
 using namespace com::sun::star::uno;
 using namespace com::sun::star::beans;
 using namespace com::sun::star::util;
-using namespace com::sun::star::lang;
 
 #define SEARCHPATH_DELIMITER  ';'
 #define SIGN_STARTVARIABLE"$("
diff --git a/unotools/source/config/saveopt.cxx 
b/unotools/source/config/saveopt.cxx
index b91ba8639619..42e52bb2147f 100644
--- a/unotools/source/config/saveopt.cxx
+++ b/unotools/source/config/saveopt.cxx
@@ -25,9 +25,6 @@
 
 #include 
 
-using namespace utl;
-using namespace com::sun::star::uno;
-
 void SetODFDefaultVersion( SvtSaveOptions::ODFDefaultVersion eVersion, const 
std::shared_ptr& xChanges )
 {
 sal_Int16 nTmp = (eVersion == SvtSaveOptions::ODFVER_LATEST) ? sal_Int16( 
3 ) : sal_Int16( eVersion );
diff --git a/unotools/source/config/syslocaleoptions.cxx 
b/unotools/source/config/syslocaleoptions.cxx
index 52760b87c673..c9f2df163522 100644
--- a/unotools/source/config/syslocaleoptions.cxx
+++ b/unotools/source/config/syslocaleoptions.cxx
@@ -36,7 +36,6 @@
 using namespace osl;
 using namespace utl;
 using namespace com::sun::star::uno;
-using namespace com::sun::star::lang;
 
 namespace
 {
diff --git a/unotools/source/misc/syslocale.cxx 
b/unotools/source/misc/syslocale.cxx
index 31b448e6583a..63b98f9f1614 100644
--- a/unotools/source/misc/syslocale.cxx
+++ b/unotools/source/misc/syslocale.cxx
@@ -35,7 +35,6 @@
 #include 
 #include 
 
-using namespace osl;
 using namespace com::sun::star;
 
 namespace {
diff --git 

core.git: 2 commits - comphelper/source eventattacher/source

2024-03-30 Thread Gabor Kelemen (via logerrit)
 comphelper/source/container/namecontainer.cxx   |1 -
 comphelper/source/eventattachermgr/eventattachermgr.cxx |1 -
 comphelper/source/misc/accessibleselectionhelper.cxx|2 --
 comphelper/source/misc/accessibletexthelper.cxx |1 -
 comphelper/source/processfactory/processfactory.cxx |1 -
 comphelper/source/property/genericpropertyset.cxx   |1 -
 comphelper/source/property/propertycontainer.cxx|1 -
 comphelper/source/property/propertysetinfo.cxx  |1 -
 comphelper/source/property/propertystatecontainer.cxx   |1 -
 comphelper/source/property/propshlp.cxx |1 -
 comphelper/source/streaming/memorystream.cxx|1 -
 comphelper/source/streaming/seqstream.cxx   |1 -
 comphelper/source/xml/attributelist.cxx |1 -
 eventattacher/source/eventattacher.cxx  |2 --
 14 files changed, 16 deletions(-)

New commits:
commit 13250e1aa589453534d113442da1ac8a2cbb71b9
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 13:21:13 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Sat Mar 30 10:03:44 2024 +0100

tdf#146619 Drop unused 'using namespace' in: comphelper/

Change-Id: I96982faf40e7654b0f8f26b666a17cbd057886a9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165516
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/comphelper/source/container/namecontainer.cxx 
b/comphelper/source/container/namecontainer.cxx
index c13ee7486e80..cfa958a0272b 100644
--- a/comphelper/source/container/namecontainer.cxx
+++ b/comphelper/source/container/namecontainer.cxx
@@ -66,7 +66,6 @@ namespace comphelper
 }
 
 using namespace ::comphelper;
-using namespace ::osl;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::container;
 using namespace ::com::sun::star::lang;
diff --git a/comphelper/source/eventattachermgr/eventattachermgr.cxx 
b/comphelper/source/eventattachermgr/eventattachermgr.cxx
index 50085c5ce6e4..9a6d4af5afe5 100644
--- a/comphelper/source/eventattachermgr/eventattachermgr.cxx
+++ b/comphelper/source/eventattachermgr/eventattachermgr.cxx
@@ -58,7 +58,6 @@ using namespace com::sun::star::beans;
 using namespace com::sun::star::script;
 using namespace com::sun::star::reflection;
 using namespace cppu;
-using namespace osl;
 
 
 namespace comphelper
diff --git a/comphelper/source/misc/accessibleselectionhelper.cxx 
b/comphelper/source/misc/accessibleselectionhelper.cxx
index 67ce5aadd1ba..ff880a76ee98 100644
--- a/comphelper/source/misc/accessibleselectionhelper.cxx
+++ b/comphelper/source/misc/accessibleselectionhelper.cxx
@@ -26,8 +26,6 @@ namespace comphelper
 
 
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::awt;
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::accessibility;
 
 OCommonAccessibleSelection::OCommonAccessibleSelection( )
diff --git a/comphelper/source/misc/accessibletexthelper.cxx 
b/comphelper/source/misc/accessibletexthelper.cxx
index 06752ba88ded..02cd77fc766d 100644
--- a/comphelper/source/misc/accessibletexthelper.cxx
+++ b/comphelper/source/misc/accessibletexthelper.cxx
@@ -39,7 +39,6 @@ namespace comphelper
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;
-using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::accessibility;
 
 
diff --git a/comphelper/source/processfactory/processfactory.cxx 
b/comphelper/source/processfactory/processfactory.cxx
index c503b8ff1e88..eddff2d45e04 100644
--- a/comphelper/source/processfactory/processfactory.cxx
+++ b/comphelper/source/processfactory/processfactory.cxx
@@ -30,7 +30,6 @@ namespace com::sun::star::uno { class XComponentContext; }
 using namespace ::com::sun::star;
 using namespace com::sun::star::uno;
 using namespace com::sun::star::lang;
-using namespace osl;
 
 namespace comphelper
 {
diff --git a/comphelper/source/property/genericpropertyset.cxx 
b/comphelper/source/property/genericpropertyset.cxx
index 65a3b9f476c1..747023d2be87 100644
--- a/comphelper/source/property/genericpropertyset.cxx
+++ b/comphelper/source/property/genericpropertyset.cxx
@@ -32,7 +32,6 @@
 #include 
 #include 
 
-using namespace ::osl;
 using namespace ::cppu;
 using namespace ::comphelper;
 using namespace ::com::sun::star;
diff --git a/comphelper/source/property/propertycontainer.cxx 
b/comphelper/source/property/propertycontainer.cxx
index 2b5685405604..ad24c5f30aa7 100644
--- a/comphelper/source/property/propertycontainer.cxx
+++ b/comphelper/source/property/propertycontainer.cxx
@@ -26,7 +26,6 @@ namespace comphelper
 
 
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::beans;
 
 OPropertyContainer::OPropertyContainer(::cppu::OBroadcastHelper& _rBHelper)
diff --git 

core.git: stoc/source

2024-03-30 Thread Gabor Kelemen (via logerrit)
 stoc/source/implementationregistration/implreg.cxx   |1 -
 stoc/source/implementationregistration/mergekeys.cxx |1 -
 stoc/source/invocation/invocation.cxx|1 -
 stoc/source/loader/dllcomponentloader.cxx|1 -
 stoc/source/namingservice/namingservice.cxx  |1 -
 stoc/source/typeconv/convert.cxx |1 -
 6 files changed, 6 deletions(-)

New commits:
commit f3be365d71d8613165abf751d295b4d83a0caddc
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 13:19:52 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Sat Mar 30 09:49:07 2024 +0100

tdf#146619 Drop unused 'using namespace' in: stoc/

Change-Id: I86e2dd229e377995e52d323b1b5be5a9a280b68f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165514
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/stoc/source/implementationregistration/implreg.cxx 
b/stoc/source/implementationregistration/implreg.cxx
index 074137324727..14c5c8e65a51 100644
--- a/stoc/source/implementationregistration/implreg.cxx
+++ b/stoc/source/implementationregistration/implreg.cxx
@@ -53,7 +53,6 @@ using namespace css::beans;
 using namespace css::lang;
 using namespace css::registry;
 using namespace cppu;
-using namespace osl;
 
 namespace {
 
diff --git a/stoc/source/implementationregistration/mergekeys.cxx 
b/stoc/source/implementationregistration/mergekeys.cxx
index dde219b9ada7..fe052bb1f7f8 100644
--- a/stoc/source/implementationregistration/mergekeys.cxx
+++ b/stoc/source/implementationregistration/mergekeys.cxx
@@ -27,7 +27,6 @@
 
 #include "mergekeys.hxx"
 
-using namespace ::osl;
 using namespace css::uno;
 using namespace ::com::sun::star;
 
diff --git a/stoc/source/invocation/invocation.cxx 
b/stoc/source/invocation/invocation.cxx
index 314b63104fc7..44aa91f6cb9e 100644
--- a/stoc/source/invocation/invocation.cxx
+++ b/stoc/source/invocation/invocation.cxx
@@ -54,7 +54,6 @@ using namespace css::reflection;
 using namespace css::beans;
 using namespace css::container;
 using namespace cppu;
-using namespace osl;
 
 namespace stoc_inv
 {
diff --git a/stoc/source/loader/dllcomponentloader.cxx 
b/stoc/source/loader/dllcomponentloader.cxx
index 43f20ad0a5e4..b32e833214c6 100644
--- a/stoc/source/loader/dllcomponentloader.cxx
+++ b/stoc/source/loader/dllcomponentloader.cxx
@@ -40,7 +40,6 @@ using namespace css::loader;
 using namespace css::lang;
 using namespace css::registry;
 using namespace cppu;
-using namespace osl;
 
 namespace {
 
diff --git a/stoc/source/namingservice/namingservice.cxx 
b/stoc/source/namingservice/namingservice.cxx
index acabb7370c6b..0013f7455ad1 100644
--- a/stoc/source/namingservice/namingservice.cxx
+++ b/stoc/source/namingservice/namingservice.cxx
@@ -29,7 +29,6 @@
 #include 
 
 using namespace cppu;
-using namespace osl;
 
 using namespace css::uno;
 using namespace css::lang;
diff --git a/stoc/source/typeconv/convert.cxx b/stoc/source/typeconv/convert.cxx
index c3cd1b999726..a9b4e0d46e50 100644
--- a/stoc/source/typeconv/convert.cxx
+++ b/stoc/source/typeconv/convert.cxx
@@ -49,7 +49,6 @@ using namespace css::uno;
 using namespace css::lang;
 using namespace css::script;
 using namespace cppu;
-using namespace osl;
 
 namespace stoc_tcv
 {


core.git: ucbhelper/source

2024-03-29 Thread Gabor Kelemen (via logerrit)
 ucbhelper/source/client/commandenvironment.cxx  |1 -
 ucbhelper/source/provider/contentidentifier.cxx |1 -
 2 files changed, 2 deletions(-)

New commits:
commit 4f13c6c5cbd958cbd3cb79385335abe512bb6de2
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 13:19:08 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Fri Mar 29 21:21:23 2024 +0100

tdf#146619 Drop unused 'using namespace' in: ucbhelper/

Change-Id: I9083ff77bc80fb1eb35305cbd3fb55bb25817b49
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165513
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/ucbhelper/source/client/commandenvironment.cxx 
b/ucbhelper/source/client/commandenvironment.cxx
index 37956b2c468f..fdde9a2afc6d 100644
--- a/ucbhelper/source/client/commandenvironment.cxx
+++ b/ucbhelper/source/client/commandenvironment.cxx
@@ -20,7 +20,6 @@
 #include 
 #include 
 
-using namespace com::sun::star::lang;
 using namespace com::sun::star::task;
 using namespace com::sun::star::ucb;
 using namespace com::sun::star::uno;
diff --git a/ucbhelper/source/provider/contentidentifier.cxx 
b/ucbhelper/source/provider/contentidentifier.cxx
index 2a5da953d99c..e545adc84983 100644
--- a/ucbhelper/source/provider/contentidentifier.cxx
+++ b/ucbhelper/source/provider/contentidentifier.cxx
@@ -20,7 +20,6 @@
 #include 
 
 using namespace com::sun::star::uno;
-using namespace com::sun::star::lang;
 using namespace com::sun::star::ucb;
 
 


core.git: 2 commits - cppuhelper/source cppu/source io/source

2024-03-29 Thread Gabor Kelemen (via logerrit)
 cppu/source/threadpool/current.cxx  |1 -
 cppuhelper/source/access_control.cxx|1 -
 cppuhelper/source/component_context.cxx |1 -
 cppuhelper/source/exc_thrower.cxx   |1 -
 cppuhelper/source/implbase_ex.cxx   |1 -
 cppuhelper/source/macro_expander.cxx|1 -
 cppuhelper/source/weak.cxx  |1 -
 io/source/TextInputStream/TextInputStream.cxx   |1 -
 io/source/TextOutputStream/TextOutputStream.cxx |1 -
 io/source/stm/odata.cxx |1 -
 io/source/stm/omark.cxx |1 -
 io/source/stm/opump.cxx |1 -
 12 files changed, 12 deletions(-)

New commits:
commit 6d3f6e77e1a21e53343339545502feecc69e6c78
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 13:18:22 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Fri Mar 29 21:21:02 2024 +0100

tdf#146619 Drop unused 'using namespace' in: io/

Change-Id: I5cfd37be41e1d364f8d50b3a547453d418abb86d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165512
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/io/source/TextInputStream/TextInputStream.cxx 
b/io/source/TextInputStream/TextInputStream.cxx
index 1ce12a6e796e..29699e9adf9c 100644
--- a/io/source/TextInputStream/TextInputStream.cxx
+++ b/io/source/TextInputStream/TextInputStream.cxx
@@ -36,7 +36,6 @@
 
 namespace com::sun::star::uno { class XComponentContext; }
 
-using namespace ::osl;
 using namespace ::cppu;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;
diff --git a/io/source/TextOutputStream/TextOutputStream.cxx 
b/io/source/TextOutputStream/TextOutputStream.cxx
index 1271c4d09c96..e8706b407843 100644
--- a/io/source/TextOutputStream/TextOutputStream.cxx
+++ b/io/source/TextOutputStream/TextOutputStream.cxx
@@ -31,7 +31,6 @@
 
 namespace com::sun::star::uno { class XComponentContext; }
 
-using namespace ::osl;
 using namespace ::cppu;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;
diff --git a/io/source/stm/odata.cxx b/io/source/stm/odata.cxx
index 6b19585da942..881b0cda132a 100644
--- a/io/source/stm/odata.cxx
+++ b/io/source/stm/odata.cxx
@@ -39,7 +39,6 @@
 #include 
 
 using namespace ::cppu;
-using namespace ::osl;
 using namespace ::com::sun::star::io;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;
diff --git a/io/source/stm/omark.cxx b/io/source/stm/omark.cxx
index 3507eb0a0729..9cc5959f1f13 100644
--- a/io/source/stm/omark.cxx
+++ b/io/source/stm/omark.cxx
@@ -42,7 +42,6 @@
 #include 
 
 using namespace ::cppu;
-using namespace ::osl;
 using namespace ::com::sun::star::io;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::lang;
diff --git a/io/source/stm/opump.cxx b/io/source/stm/opump.cxx
index df3e6132319d..62f6e85c3b95 100644
--- a/io/source/stm/opump.cxx
+++ b/io/source/stm/opump.cxx
@@ -35,7 +35,6 @@
 #include 
 #include 
 
-using namespace osl;
 using namespace cppu;
 using namespace com::sun::star::uno;
 using namespace com::sun::star::lang;
commit b6f5472ea147230b07a04f5677e1de8ea149cea5
Author: Gabor Kelemen 
AuthorDate: Fri Mar 29 13:16:58 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Fri Mar 29 21:20:50 2024 +0100

tdf#146619 Drop unused 'using namespace' in: cppu/ cppuhelper/

Change-Id: I4658c2a5c780fa5e8dd83381eb9978510973e0a9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165511
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/cppu/source/threadpool/current.cxx 
b/cppu/source/threadpool/current.cxx
index 64e6bfb8f64c..46fdc8c253f3 100644
--- a/cppu/source/threadpool/current.cxx
+++ b/cppu/source/threadpool/current.cxx
@@ -30,7 +30,6 @@
 #include "current.hxx"
 
 
-using namespace ::osl;
 using namespace ::rtl;
 using namespace ::cppu;
 using namespace ::com::sun::star::uno;
diff --git a/cppuhelper/source/access_control.cxx 
b/cppuhelper/source/access_control.cxx
index da8343648a95..9b8b907df6b6 100644
--- a/cppuhelper/source/access_control.cxx
+++ b/cppuhelper/source/access_control.cxx
@@ -26,7 +26,6 @@
 #include 
 #include 
 
-using namespace ::osl;
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
 
diff --git a/cppuhelper/source/component_context.cxx 
b/cppuhelper/source/component_context.cxx
index da070bdf027c..47dbd0b3773e 100644
--- a/cppuhelper/source/component_context.cxx
+++ b/cppuhelper/source/component_context.cxx
@@ -51,7 +51,6 @@ constexpr OUString SMGR_SINGLETON = 
u"/singletons/com.sun.star.lang.theServiceMa
 constexpr OUStringLiteral TDMGR_SINGLETON = 
u"/singletons/com.sun.star.reflection.theTypeDescriptionManager";
 constexpr OUStringLiteral AC_SINGLETON = 
u"/singletons/com.sun.star.security.theAccessController";
 
-using namespace ::osl;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star;
 
diff --git 

core.git: xmloff/source

2024-03-29 Thread Gabor Kelemen (via logerrit)
 xmloff/source/draw/QRCodeContext.cxx|1 -
 xmloff/source/draw/descriptionimp.cxx   |1 -
 xmloff/source/forms/formattributes.cxx  |1 -
 xmloff/source/forms/formcellbinding.cxx |1 -
 xmloff/source/style/DrawAspectHdl.cxx   |1 -
 xmloff/source/style/PageMasterExportPropMapper.cxx  |1 -
 xmloff/source/style/PageMasterPropHdlFactory.cxx|1 -
 xmloff/source/style/PageMasterPropMapper.cxx|2 --
 xmloff/source/style/XMLBackgroundImageContext.cxx   |1 -
 xmloff/source/text/XMLIndexBibliographyConfigurationContext.cxx |1 -
 xmloff/source/text/XMLSectionSourceDDEImportContext.cxx |1 -
 xmloff/source/text/XMLTextNumRuleInfo.cxx   |1 -
 xmloff/source/text/txtftne.cxx  |1 -
 xmloff/source/text/txtparae.cxx |1 -
 xmloff/source/transform/Oasis2OOo.cxx   |1 -
 xmloff/source/transform/PersAttrListTContext.cxx|1 -
 16 files changed, 17 deletions(-)

New commits:
commit e2e9eeb822928255b3f2a31dfe98344f6d8e81cd
Author: Gabor Kelemen 
AuthorDate: Sat Mar 16 18:09:20 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Fri Mar 29 21:19:32 2024 +0100

tdf#146619 Recheck xmloff/*cxx with IWYU

after cleaning up unused 'using namespace' clauses

Change-Id: I9e4cd3790408ae6b0379819a8275feaf67e860cb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164941
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/xmloff/source/draw/QRCodeContext.cxx 
b/xmloff/source/draw/QRCodeContext.cxx
index 434065b5f203..580e4e8b9a41 100644
--- a/xmloff/source/draw/QRCodeContext.cxx
+++ b/xmloff/source/draw/QRCodeContext.cxx
@@ -10,7 +10,6 @@
 #include "QRCodeContext.hxx"
 
 #include 
-#include 
 #include 
 #include 
 
diff --git a/xmloff/source/draw/descriptionimp.cxx 
b/xmloff/source/draw/descriptionimp.cxx
index c553bb655287..e17980f55baa 100644
--- a/xmloff/source/draw/descriptionimp.cxx
+++ b/xmloff/source/draw/descriptionimp.cxx
@@ -18,7 +18,6 @@
  */
 
 #include 
-#include 
 #include 
 #include 
 
diff --git a/xmloff/source/forms/formattributes.cxx 
b/xmloff/source/forms/formattributes.cxx
index 0b8b84d0f299..3a979f2599ab 100644
--- a/xmloff/source/forms/formattributes.cxx
+++ b/xmloff/source/forms/formattributes.cxx
@@ -20,7 +20,6 @@
 #include "formattributes.hxx"
 
 #include 
-#include 
 #include 
 #include 
 
diff --git a/xmloff/source/forms/formcellbinding.cxx 
b/xmloff/source/forms/formcellbinding.cxx
index 2a7a26bb71b0..9b19d2c3651e 100644
--- a/xmloff/source/forms/formcellbinding.cxx
+++ b/xmloff/source/forms/formcellbinding.cxx
@@ -22,7 +22,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
diff --git a/xmloff/source/style/DrawAspectHdl.cxx 
b/xmloff/source/style/DrawAspectHdl.cxx
index 10cc762ec954..cc38523c8d06 100644
--- a/xmloff/source/style/DrawAspectHdl.cxx
+++ b/xmloff/source/style/DrawAspectHdl.cxx
@@ -21,7 +21,6 @@
 
 #include 
 #include 
-#include 
 
 using namespace ::com::sun::star;
 
diff --git a/xmloff/source/style/PageMasterExportPropMapper.cxx 
b/xmloff/source/style/PageMasterExportPropMapper.cxx
index 9b7ff71874e8..7e5d2bcbee6e 100644
--- a/xmloff/source/style/PageMasterExportPropMapper.cxx
+++ b/xmloff/source/style/PageMasterExportPropMapper.cxx
@@ -19,7 +19,6 @@
 
 #include "PageMasterExportPropMapper.hxx"
 #include 
-#include 
 #include 
 #include 
 #include 
diff --git a/xmloff/source/style/PageMasterPropHdlFactory.cxx 
b/xmloff/source/style/PageMasterPropHdlFactory.cxx
index 1cb396803aba..1617584839ab 100644
--- a/xmloff/source/style/PageMasterPropHdlFactory.cxx
+++ b/xmloff/source/style/PageMasterPropHdlFactory.cxx
@@ -33,7 +33,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 
diff --git a/xmloff/source/style/PageMasterPropMapper.cxx 
b/xmloff/source/style/PageMasterPropMapper.cxx
index 40f33139351c..6e7a4be35bba 100644
--- a/xmloff/source/style/PageMasterPropMapper.cxx
+++ b/xmloff/source/style/PageMasterPropMapper.cxx
@@ -23,8 +23,6 @@
 #include 
 #include 
 
-#include 
-
 using namespace ::com::sun::star;
 
 XMLPageMasterPropSetMapper::XMLPageMasterPropSetMapper():
diff --git a/xmloff/source/style/XMLBackgroundImageContext.cxx 
b/xmloff/source/style/XMLBackgroundImageContext.cxx
index fb655d132385..686edd7ed1ed 100644
--- a/xmloff/source/style/XMLBackgroundImageContext.cxx
+++ b/xmloff/source/style/XMLBackgroundImageContext.cxx
@@ -18,7 +18,6 @@
  */
 
 
-#include 
 #include 
 #include 
 
diff --git a/xmloff/source/text/XMLIndexBibliographyConfigurationContext.cxx 
b/xmloff/source/text/XMLIndexBibliographyConfigurationContext.cxx
index d1e435abc0c8..1be742637df0 100644
--- a/xmloff/source/text/XMLIndexBibliographyConfigurationContext.cxx
+++ 

core.git: svx/inc svx/source svx/uiconfig

2024-03-29 Thread Gabor Kelemen (via logerrit)
 svx/inc/helpids.h |5 -
 svx/source/gallery2/galbrws1.cxx  |8 
 svx/source/gallery2/galctrl.cxx   |5 -
 svx/uiconfig/ui/sidebargallery.ui |   25 +++--
 4 files changed, 23 insertions(+), 20 deletions(-)

New commits:
commit 69a8adcc76de2d827d109d2c66e1d0c64a1e6a52
Author: Gabor Kelemen 
AuthorDate: Mon Mar 18 08:43:41 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Fri Mar 29 14:26:47 2024 +0100

Use default HIDs in Gallery, simplify code

and copy relevant help texts from helpcontent to .ui file

Change-Id: I3791f7843d6d8a0285d0d3369c867e6b165a582f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165021
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/svx/inc/helpids.h b/svx/inc/helpids.h
index 30e12062db47..01ca23ff058f 100644
--- a/svx/inc/helpids.h
+++ b/svx/inc/helpids.h
@@ -27,11 +27,6 @@ inline constexpr OUString HID_CTRL3D_HSCROLL = 
u"SVX_HID_CTRL3D_HSCROLL"_ustr;
 inline constexpr OUString HID_CTRL3D_SWITCHER = 
u"SVX_HID_CTRL3D_SWITCHER"_ustr;
 inline constexpr OUString HID_CTRL3D_VSCROLL = u"SVX_HID_CTRL3D_VSCROLL"_ustr;
 inline constexpr OUString HID_CTRL_COLOR = u"SVX_HID_CTRL_COLOR"_ustr;
-inline constexpr OUString HID_GALLERY_ICONVIEW = 
u"SVX_HID_GALLERY_ICONVIEW"_ustr;
-inline constexpr OUString HID_GALLERY_LISTVIEW = 
u"SVX_HID_GALLERY_LISTVIEW"_ustr;
-inline constexpr OUString HID_GALLERY_NEWTHEME = 
u"SVX_HID_GALLERY_NEWTHEME"_ustr;
-inline constexpr OUString HID_GALLERY_THEMELIST = 
u"SVX_HID_GALLERY_THEMELIST"_ustr;
-inline constexpr OUString HID_GALLERY_WINDOW = u"SVX_HID_GALLERY_WINDOW"_ustr;
 inline constexpr OUString HID_POPUP_COLOR = u"SVX_HID_POPUP_COLOR"_ustr;
 inline constexpr OUString HID_POPUP_COLOR_CTRL = 
u"SVX_HID_POPUP_COLOR_CTRL"_ustr;
 inline constexpr OUString HID_POPUP_FRAME = u"SVX_HID_POPUP_FRAME"_ustr;
diff --git a/svx/source/gallery2/galbrws1.cxx b/svx/source/gallery2/galbrws1.cxx
index 443d9be4adec..18c2dae8e39a 100644
--- a/svx/source/gallery2/galbrws1.cxx
+++ b/svx/source/gallery2/galbrws1.cxx
@@ -32,7 +32,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -148,11 +147,9 @@ GalleryBrowser1::GalleryBrowser1(
 , meLastMode  ( GALLERYBROWSERMODE_NONE )
 , m_aCharacterClassficator( ::comphelper::getProcessComponentContext(), 
SvtSysLocale().GetLanguageTag() )
 {
-mxNewTheme->set_help_id(HID_GALLERY_NEWTHEME);
 mxNewTheme->connect_clicked( LINK( this, GalleryBrowser1, ClickNewThemeHdl 
) );
 
 mxThemes->make_sorted();
-mxThemes->set_help_id( HID_GALLERY_THEMELIST );
 mxThemes->connect_changed( LINK( this, GalleryBrowser1, SelectThemeHdl ) );
 mxThemes->connect_popup_menu(LINK(this, GalleryBrowser1, PopupMenuHdl1));
 mxThemes->connect_key_press(LINK(this, GalleryBrowser1, KeyInputHdl1));
@@ -180,9 +177,6 @@ GalleryBrowser1::GalleryBrowser1(
 "com.sun.star.util.URLTransformer", m_xContext ),
 css::uno::UNO_QUERY );
 
-mxIconButton->set_help_id(HID_GALLERY_ICONVIEW);
-mxListButton->set_help_id(HID_GALLERY_LISTVIEW);
-
 mxIconButton->connect_toggled( LINK( this, GalleryBrowser1, SelectTbxHdl ) 
);
 mxListButton->connect_toggled( LINK( this, GalleryBrowser1, SelectTbxHdl ) 
);
 
@@ -197,8 +191,6 @@ GalleryBrowser1::GalleryBrowser1(
 mxListView->connect_drag_begin(LINK(this, GalleryBrowser1, DragBeginHdl));
 mxSearchField->connect_changed( LINK( this, GalleryBrowser1, SearchHdl));
 
-mxListView->set_help_id(HID_GALLERY_WINDOW);
-
 SetMode( ( GALLERYBROWSERMODE_PREVIEW != GalleryBrowser1::meInitMode ) ? 
GalleryBrowser1::meInitMode : GALLERYBROWSERMODE_ICON );
 
 FillThemeEntries();
diff --git a/svx/source/gallery2/galctrl.cxx b/svx/source/gallery2/galctrl.cxx
index 05b64117577e..b753dbfac069 100644
--- a/svx/source/gallery2/galctrl.cxx
+++ b/svx/source/gallery2/galctrl.cxx
@@ -23,7 +23,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -66,8 +65,6 @@ void GalleryPreview::SetDrawingArea(weld::DrawingArea* 
pDrawingArea)
 pDrawingArea->set_size_request(aSize.Width(), aSize.Height());
 SetOutputSizePixel(aSize);
 
-pDrawingArea->set_help_id(HID_GALLERY_WINDOW);
-
 mxDragDropTargetHelper.reset(new GalleryDragDrop(mpParent, 
pDrawingArea->get_drop_target()));
 }
 
@@ -227,7 +224,6 @@ void 
DialogGalleryPreview::SetDrawingArea(weld::DrawingArea* pDrawingArea)
 CustomWidgetController::SetDrawingArea(pDrawingArea);
 Size aSize(pDrawingArea->get_ref_device().LogicToPixel(Size(70, 88), 
MapMode(MapUnit::MapAppFont)));
 pDrawingArea->set_size_request(aSize.Width(), aSize.Height());
-pDrawingArea->set_help_id(HID_GALLERY_WINDOW);
 }
 
 bool DialogGalleryPreview::SetGraphic( const INetURLObject& _aURL )
@@ -302,7 +298,6 @@ void GalleryIconView::SetDrawingArea(weld::DrawingArea* 
pDrawingArea)
 SetStyle(GetStyle() | WB_TABSTOP | WB_3DLOOK | WB_BORDER | WB_ITEMBORDER 

core.git: bin/update_pch xmlsecurity/inc xmlsecurity/IwyuFilter_xmlsecurity.yaml xmlsecurity/source

2024-03-28 Thread Gabor Kelemen (via logerrit)
 bin/update_pch|1 
 xmlsecurity/IwyuFilter_xmlsecurity.yaml   |3 
 xmlsecurity/inc/pch/precompiled_xsec_xmlsec.hxx   |1 
 xmlsecurity/inc/xmlsec-wrapper.h  |   43 
--
 xmlsecurity/source/gpg/SecurityEnvironment.cxx|1 
 xmlsecurity/source/gpg/xmlsignature_gpgimpl.cxx   |2 
 xmlsecurity/source/xmlsec/biginteger.cxx  |1 
 xmlsecurity/source/xmlsec/errorcallback.cxx   |1 
 xmlsecurity/source/xmlsec/mscrypt/akmngr.cxx  |1 
 xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx |3 
 xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.hxx |4 
 xmlsecurity/source/xmlsec/mscrypt/seinitializer_mscryptimpl.cxx   |1 
 xmlsecurity/source/xmlsec/mscrypt/xmlsecuritycontext_mscryptimpl.cxx  |2 
 xmlsecurity/source/xmlsec/mscrypt/xmlsignature_mscryptimpl.cxx|3 
 xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx |2 
 xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx |1 
 xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx|1 
 xmlsecurity/source/xmlsec/xmlsec_init.cxx |1 
 xmlsecurity/source/xmlsec/xmlstreamio.cxx |2 
 19 files changed, 10 insertions(+), 64 deletions(-)

New commits:
commit 50897e3fe001aeae5a6091ede155088461c798f3
Author: Gabor Kelemen 
AuthorDate: Thu Mar 28 01:54:23 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Thu Mar 28 12:51:00 2024 +0100

Drop transitional header xmlsecurity/xmlsec-wrapper.h

It was introduced with
commit ec52e5e5a204862905b555cdc1f7393aede1f7d8
and the reason of that was the XMLSEC_NO_SIZE_T behavior consolidation.

But this was removed later with
commit bfd479abf0d1d8ce36c3b0dcc6c824216f88a95b

Change-Id: Ib5350d9ab5554d1412821b762cd3ee7906b65b64
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165440
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/bin/update_pch b/bin/update_pch
index 4719e5f9269f..73be15f0bf97 100755
--- a/bin/update_pch
+++ b/bin/update_pch
@@ -438,7 +438,6 @@ def filter_ignore(line, module):
 if module == 'xmlsecurity':
 ignore_list += [
 'xmlsec/*',
-'xmlsecurity/xmlsec-wrapper.h',
 ]
 if module == 'external/pdfium':
 ignore_list += [
diff --git a/xmlsecurity/IwyuFilter_xmlsecurity.yaml 
b/xmlsecurity/IwyuFilter_xmlsecurity.yaml
index b27a552751a6..76c774e71e7b 100644
--- a/xmlsecurity/IwyuFilter_xmlsecurity.yaml
+++ b/xmlsecurity/IwyuFilter_xmlsecurity.yaml
@@ -95,9 +95,6 @@ excludelist:
 - com/sun/star/lang/XServiceInfo.hpp
 - com/sun/star/lang/XUnoTunnel.hpp
 - com/sun/star/xml/wrapper/XXMLElementWrapper.hpp
-xmlsecurity/source/xmlsec/errorcallback.cxx:
-# Needed for xmlsec/errors.h
-- xmlsec-wrapper.h
 xmlsecurity/source/xmlsec/xmlstreamio.cxx:
 # comphelper::ScopeGuard is in use but not noticed by IWYU
 - comphelper/scopeguard.hxx
diff --git a/xmlsecurity/inc/pch/precompiled_xsec_xmlsec.hxx 
b/xmlsecurity/inc/pch/precompiled_xsec_xmlsec.hxx
index d69f3120e0ca..5e3d1f0b40be 100644
--- a/xmlsecurity/inc/pch/precompiled_xsec_xmlsec.hxx
+++ b/xmlsecurity/inc/pch/precompiled_xsec_xmlsec.hxx
@@ -136,7 +136,6 @@
 #include 
 #endif // PCH_LEVEL >= 3
 #if PCH_LEVEL >= 4
-#include 
 #include 
 #endif // PCH_LEVEL >= 4
 
diff --git a/xmlsecurity/inc/xmlsec-wrapper.h b/xmlsecurity/inc/xmlsec-wrapper.h
deleted file mode 100644
index 3ad705400c52..
--- a/xmlsecurity/inc/xmlsec-wrapper.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#pragma once
-
-#include 
-
-#include 
-
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#ifdef XMLSEC_CRYPTO_NSS

core.git: helpcontent2

2024-03-23 Thread Gabor Kelemen (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f0a9ead35c0da606d7ccab2f0c96e103a3b6be06
Author: Gabor Kelemen 
AuthorDate: Sat Mar 23 12:40:52 2024 +0100
Commit: Gerrit Code Review 
CommitDate: Sat Mar 23 12:40:52 2024 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 1e3c2cb1ffa55b44e2b77d14ac5f5ce217630b8a
  - Use default HIDs in Gallery sidebar help page

Change-Id: I7ab1d18d25c290320f3c0ebfdf3da1837cdf007a
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/165023
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index b010f7c91670..1e3c2cb1ffa5 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit b010f7c91670f60ab8c637b321507b67d1bc4a63
+Subproject commit 1e3c2cb1ffa55b44e2b77d14ac5f5ce217630b8a


help.git: source/text

2024-03-23 Thread Gabor Kelemen (via logerrit)
 source/text/shared/01/gallery.xhp |   21 +++--
 1 file changed, 11 insertions(+), 10 deletions(-)

New commits:
commit 1e3c2cb1ffa55b44e2b77d14ac5f5ce217630b8a
Author: Gabor Kelemen 
AuthorDate: Mon Mar 18 21:21:00 2024 +0100
Commit: Olivier Hallot 
CommitDate: Sat Mar 23 12:40:52 2024 +0100

Use default HIDs in Gallery sidebar help page

Change-Id: I7ab1d18d25c290320f3c0ebfdf3da1837cdf007a
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/165023
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/shared/01/gallery.xhp 
b/source/text/shared/01/gallery.xhp
index 25ec161a3f..34ace37727 100644
--- a/source/text/shared/01/gallery.xhp
+++ b/source/text/shared/01/gallery.xhp
@@ -27,10 +27,10 @@
 
 
 
-
-Displays the contents of the 
Gallery as icons.
-
-Displays the contents of the 
Gallery as small icons, with title and path 
information.
+
+Displays the contents of the Gallery as 
icons.
+
+Displays the contents of the Gallery as small 
icons, with title and path information.
 
 
 
@@ -71,20 +71,21 @@
   
 
 
-
-Themes are listed on the left 
side of the Gallery.Click a 
theme to view the objects associated with the theme.
-
-To insert a Gallery object, select 
the object, and then drag it into the document.
+
+Themes are listed on the left 
side of the Gallery.Click a theme to view the 
objects associated with the theme.
+
+
+To insert a 
Gallery object, select the object, and then drag it into the 
document.
 
 
 
 
 Adding a New File to the Gallery
 To add a file to the 
Gallery, right-click a theme, choose Properties, 
click the Files tab, and then click Add. You can also 
click an object in the current document, hold, and then drag it to the 
Gallery window.
-
 
 New theme
-Adds a new theme to the Gallery and 
lets you choose the files to include in the theme.
+
+Adds a new theme 
to the Gallery and lets you choose the files to include in the 
theme.
 To access the following 
commands, right-click a theme in the Gallery:
 
 


core.git: helpcontent2

2024-03-20 Thread Gabor Kelemen (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ce7af0dc500efce2975576b1cd401ffc7121c529
Author: Gabor Kelemen 
AuthorDate: Wed Mar 20 09:35:47 2024 +0100
Commit: Gerrit Code Review 
CommitDate: Wed Mar 20 09:35:47 2024 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 41a513b0355e7af1c2cde0ae95cc6fc7c23d0526
  - Fix an ahelp in the New Gallery dialogs help

Change-Id: I7f454ff043683c26337ea63468bd0f0b26944633
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/165022
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/helpcontent2 b/helpcontent2
index e48c06ba931d..41a513b0355e 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit e48c06ba931d5da0371c2e9b64158aebfbbd9f49
+Subproject commit 41a513b0355e7af1c2cde0ae95cc6fc7c23d0526


help.git: source/text

2024-03-20 Thread Gabor Kelemen (via logerrit)
 source/text/shared/01/gallery_files.xhp |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 41a513b0355e7af1c2cde0ae95cc6fc7c23d0526
Author: Gabor Kelemen 
AuthorDate: Mon Mar 18 21:17:34 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Wed Mar 20 09:35:47 2024 +0100

Fix an ahelp in the New Gallery dialogs help

Change-Id: I7f454ff043683c26337ea63468bd0f0b26944633
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/165022
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/source/text/shared/01/gallery_files.xhp 
b/source/text/shared/01/gallery_files.xhp
index bb4d9325a2..4448f18fbd 100644
--- a/source/text/shared/01/gallery_files.xhp
+++ b/source/text/shared/01/gallery_files.xhp
@@ -55,8 +55,8 @@
 Adds all of the files in the list to the 
current theme.
 
 Preview
-Displays or hides a preview of the 
selected file.UFI: removed help id
+Displays or hides a preview of the 
selected file.
 Preview box
-Displays a preview of the selected 
file.
+Displays a preview of the selected 
file.
 
 


core.git: xmloff/source

2024-03-19 Thread Gabor Kelemen (via logerrit)
 xmloff/source/core/XMLBase64ImportContext.cxx   |1 -
 xmloff/source/core/XMLEmbeddedObjectImportContext.cxx   |1 -
 xmloff/source/core/xmluconv.cxx |1 -
 xmloff/source/draw/QRCodeContext.cxx|1 -
 xmloff/source/draw/animimp.cxx  |1 -
 xmloff/source/draw/descriptionimp.cxx   |3 ---
 xmloff/source/draw/eventimp.cxx |2 --
 xmloff/source/draw/layerexp.cxx |2 --
 xmloff/source/draw/layerimp.cxx |2 --
 xmloff/source/draw/ximpshow.cxx |1 -
 xmloff/source/forms/elementexport.cxx   |1 -
 xmloff/source/forms/formattributes.cxx  |2 --
 xmloff/source/forms/formcellbinding.cxx |1 -
 xmloff/source/forms/formlayerexport.cxx |2 --
 xmloff/source/forms/formlayerimport.cxx |2 --
 xmloff/source/forms/propertyexport.cxx  |1 -
 xmloff/source/script/xmlscripti.cxx |1 -
 xmloff/source/style/DrawAspectHdl.cxx   |1 -
 xmloff/source/style/PageMasterExportPropMapper.cxx  |1 -
 xmloff/source/style/PageMasterPropHdlFactory.cxx|1 -
 xmloff/source/style/PageMasterPropMapper.cxx|2 --
 xmloff/source/style/StyleMap.cxx|3 ---
 xmloff/source/style/XMLBackgroundImageContext.cxx   |1 -
 xmloff/source/style/XMLFontStylesContext.cxx|2 --
 xmloff/source/style/xmlexppr.cxx|1 -
 xmloff/source/style/xmlprmap.cxx|2 --
 xmloff/source/text/XMLIndexBibliographyConfigurationContext.cxx |1 -
 xmloff/source/text/XMLSectionSourceDDEImportContext.cxx |1 -
 xmloff/source/text/XMLTextListAutoStylePool.cxx |1 -
 xmloff/source/text/XMLTextNumRuleInfo.cxx   |1 -
 xmloff/source/text/XMLTextTableContext.cxx  |3 ---
 xmloff/source/text/txtftne.cxx  |1 -
 xmloff/source/text/txtparae.cxx |1 -
 xmloff/source/text/txtprmap.cxx |1 -
 xmloff/source/text/txtstyle.cxx |1 -
 xmloff/source/transform/ControlOOoTContext.cxx  |1 -
 xmloff/source/transform/Oasis2OOo.cxx   |2 --
 xmloff/source/transform/PersAttrListTContext.cxx|1 -
 xmloff/source/transform/TransformerActions.cxx  |2 --
 xmloff/source/transform/TransformerBase.cxx |1 -
 40 files changed, 57 deletions(-)

New commits:
commit 4496544f5d7ea9eaf83478a8846e14455d5dda3c
Author: Gabor Kelemen 
AuthorDate: Thu Mar 14 23:14:31 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Tue Mar 19 09:28:41 2024 +0100

Remove unused namespaces from xmloff

Change-Id: Id46c9512b8024c9dc50edfb200599b1901fbf3c1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164940
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/xmloff/source/core/XMLBase64ImportContext.cxx 
b/xmloff/source/core/XMLBase64ImportContext.cxx
index 1476733642a3..6997a08340a6 100644
--- a/xmloff/source/core/XMLBase64ImportContext.cxx
+++ b/xmloff/source/core/XMLBase64ImportContext.cxx
@@ -26,7 +26,6 @@
 #include 
 
 using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::xml::sax;
 using namespace ::com::sun::star::io;
 
 
diff --git a/xmloff/source/core/XMLEmbeddedObjectImportContext.cxx 
b/xmloff/source/core/XMLEmbeddedObjectImportContext.cxx
index 980dd8e0572d..d9d57af9f664 100644
--- a/xmloff/source/core/XMLEmbeddedObjectImportContext.cxx
+++ b/xmloff/source/core/XMLEmbeddedObjectImportContext.cxx
@@ -37,7 +37,6 @@
 
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::util;
-using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::lang;
 using namespace ::com::sun::star::document;
 using namespace ::com::sun::star::xml::sax;
diff --git a/xmloff/source/core/xmluconv.cxx b/xmloff/source/core/xmluconv.cxx
index 544bea50d3c5..27ed06144f54 100644
--- a/xmloff/source/core/xmluconv.cxx
+++ b/xmloff/source/core/xmluconv.cxx
@@ -54,7 +54,6 @@
 
 using namespace com::sun::star;
 using namespace com::sun::star::uno;
-using namespace com::sun::star::lang;
 using namespace com::sun::star::text;
 using namespace com::sun::star::style;
 using namespace ::com::sun::star::i18n;
diff --git a/xmloff/source/draw/QRCodeContext.cxx 
b/xmloff/source/draw/QRCodeContext.cxx
index 06477be637e0..434065b5f203 100644
--- 

core.git: bin/find-unneeded-includes

2024-03-18 Thread Gabor Kelemen (via logerrit)
 bin/find-unneeded-includes |  208 +++--
 1 file changed, 200 insertions(+), 8 deletions(-)

New commits:
commit a741dd2cd5059e3d6a06307fb7c6c016b4099c81
Author: Gabor Kelemen 
AuthorDate: Thu Mar 14 12:40:53 2024 +0100
Commit: Miklos Vajna 
CommitDate: Mon Mar 18 09:21:27 2024 +0100

find-unneeded-includes: add option to detect unneeded namespaces

Sometimes there are unneeded namespaces included, these can be detected
from the IWYU output.
This mode makes a suggestion to remove these, then in a subsequent normal
run some more headers can be detected as unnecessary, whose presence was
justified by the "using namespace" statement.

Change-Id: I45616537925ec0d09039edf3d9237ffbd13e2410
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164939
Tested-by: Jenkins
Reviewed-by: Miklos Vajna 

diff --git a/bin/find-unneeded-includes b/bin/find-unneeded-includes
index 12659fa82a31..439bb5230418 100755
--- a/bin/find-unneeded-includes
+++ b/bin/find-unneeded-includes
@@ -153,11 +153,12 @@ def unwrapInclude(include):
 return include[1:-1]
 
 
-def processIWYUOutput(iwyuOutput, moduleRules, fileName, noexclude):
+def processIWYUOutput(iwyuOutput, moduleRules, fileName, noexclude, 
checknamespaces):
 inAdd = False
 toAdd = []
 inRemove = False
 toRemove = []
+inFull = False
 currentFileName = None
 
 for line in iwyuOutput:
@@ -174,6 +175,9 @@ def processIWYUOutput(iwyuOutput, moduleRules, fileName, 
noexclude):
 if inAdd:
 inAdd = False
 continue
+if inFull:
+inFull = False
+continue
 
 shouldAdd = fileName + " should add these lines:"
 match = re.match(shouldAdd, line)
@@ -189,6 +193,12 @@ def processIWYUOutput(iwyuOutput, moduleRules, fileName, 
noexclude):
 inRemove = True
 continue
 
+if checknamespaces:
+match = re.match("The full include-list for " + fileName, line)
+if match:
+inFull = True
+continue
+
 if inAdd:
 match = re.match('#include ([^ ]+)', line)
 if match:
@@ -198,7 +208,7 @@ def processIWYUOutput(iwyuOutput, moduleRules, fileName, 
noexclude):
 # Forward declaration.
 toAdd.append(line)
 
-if inRemove:
+if inRemove and not checknamespaces:
 match = re.match("- #include (.*)  // lines (.*)-.*", line)
 if match:
 # Only suggest removals for now. Removing fwd decls is more 
complex: they may be
@@ -209,25 +219,203 @@ def processIWYUOutput(iwyuOutput, moduleRules, fileName, 
noexclude):
 if not ignoreRemoval(include, toAdd, currentFileName, 
moduleRules, noexclude):
 toRemove.append("%s:%s: %s" % (currentFileName, lineno, 
include))
 
+if inFull:
+if checknamespaces:
+# match for all possible URE/UNO namespaces, created with:
+# find udkapi/com/sun/star/ -type d | sort| xargs basename -a 
| tr '
' '|'
+# find offapi/com/sun/star/ -type d | sort | xargs basename -a 
| tr '
' '|'
+# and ooo::vba namespaces
+# plus a few popular ones about other modules
+ns = re.compile(
+'.*for\ ('
+# URE namespaces
+'beans|'
+'bridge|oleautomation|'
+'connection|'
+'container|'
+'io|'
+'java|'
+'lang|'
+'loader|'
+'reflection|'
+'registry|'
+'script|'
+'security|'
+'task|'
+'uno|'
+'uri|'
+'util|'
+# UNO namespaces
+'accessibility|'
+'animations|'
+'auth|'
+'awt|tab|tree|grid|'
+'chart|'
+'chart2|data|'
+'configuration|bootstrap|backend|xml|'
+'cui|'
+'datatransfer|clipboard|dnd|'
+'deployment|test|ui|'
+'document|'
+'drawing|framework|'
+

core.git: xmlsecurity/source

2024-03-12 Thread Gabor Kelemen (via logerrit)
 xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx |   29 -
 1 file changed, 29 deletions(-)

New commits:
commit f35ff76607041798823ac985b50ee40d5c670260
Author: Gabor Kelemen 
AuthorDate: Mon Mar 11 09:40:08 2024 +0100
Commit: Thorsten Behrens 
CommitDate: Tue Mar 12 18:49:26 2024 +0100

Remove SaveODFItem class

This is effectively unused since:
commit d22ab7b444a4e16dc2bd1f7d15fa36a848eaaaed

Change-Id: I6f646b7daf845035196fc9dde4ff270b8143d37a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164645
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx 
b/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx
index ba16a3618e7f..8064a8266988 100644
--- a/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx
+++ b/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx
@@ -85,34 +85,6 @@ using namespace css;
 
 namespace
 {
-class SaveODFItem: public utl::ConfigItem
-{
-private:
-virtual void ImplCommit() override;
-
-public:
-virtual void Notify( const css::uno::Sequence< OUString >& aPropertyNames 
) override;
-SaveODFItem();
-};
-
-void SaveODFItem::ImplCommit() {}
-void SaveODFItem::Notify( const css::uno::Sequence< OUString >& ) {}
-
-SaveODFItem::SaveODFItem(): utl::ConfigItem("Office.Common/Save")
-{
-OUString sDef("ODF/DefaultVersion");
-Sequence< css::uno::Any > aValues = GetProperties( 
Sequence(,1) );
-if ( aValues.getLength() != 1)
-throw uno::RuntimeException(
-"[xmlsecurity] Could not open property 
Office.Common/Save/ODF/DefaultVersion",
-nullptr);
-
-sal_Int16 nTmp = 0;
-if ( !(aValues[0] >>= nTmp) )
-throw uno::RuntimeException(
-"[xmlsecurity]SaveODFItem::SaveODFItem(): Wrong Type!",
-nullptr );
-}
 
 #ifdef _WIN32
 constexpr std::u16string_view aGUIServers[]
@@ -377,7 +349,6 @@ bool DigitalSignaturesDialog::canAddRemove()
 
 OSL_ASSERT(maSignatureManager.getStore().is());
 bool bDoc1_1 = DocumentSignatureHelper::isODFPre_1_2(m_sODFVersion);
-SaveODFItem item;
 
 // see specification
 //cvs: specs/www/appwide/security/Electronic_Signatures_and_Security.sxw


core.git: xmloff/IwyuFilter_xmloff.yaml xmloff/qa xmloff/source

2024-03-12 Thread Gabor Kelemen (via logerrit)
 xmloff/IwyuFilter_xmloff.yaml   |  197 
++
 xmloff/qa/unit/style.cxx|1 
 xmloff/source/chart/SchXMLAxisContext.cxx   |1 
 xmloff/source/chart/SchXMLCalculationSettingsContext.cxx|1 
 xmloff/source/chart/SchXMLChartContext.cxx  |3 
 xmloff/source/chart/SchXMLDataTableContext.cxx  |3 
 xmloff/source/chart/SchXMLLegendContext.cxx |1 
 xmloff/source/chart/SchXMLParagraphContext.cxx  |3 
 xmloff/source/chart/SchXMLPlotAreaContext.cxx   |3 
 xmloff/source/chart/SchXMLPropertyMappingContext.cxx|2 
 xmloff/source/chart/SchXMLRegressionCurveObjectContext.cxx  |2 
 xmloff/source/chart/SchXMLSeries2Context.cxx|1 
 xmloff/source/chart/SchXMLTableContext.cxx  |3 
 xmloff/source/chart/XMLChartStyleContext.cxx|1 
 xmloff/source/chart/XMLSymbolImageContext.cxx   |3 
 xmloff/source/core/DomBuilderContext.cxx|1 
 xmloff/source/core/DomExport.cxx|1 
 xmloff/source/core/namespacemap.cxx |1 
 xmloff/source/core/unoatrcn.cxx |1 
 xmloff/source/core/xmlerror.cxx |1 
 xmloff/source/core/xmlexp.cxx   |1 
 xmloff/source/core/xmlictxt.cxx |4 
 xmloff/source/core/xmlimp.cxx   |3 
 xmloff/source/draw/QRCodeContext.cxx|7 
 xmloff/source/draw/SignatureLineContext.cxx |1 
 xmloff/source/draw/XMLImageMapContext.cxx   |3 
 xmloff/source/draw/XMLNumberStyles.cxx  |1 
 xmloff/source/draw/XMLReplacementImageContext.cxx   |1 
 xmloff/source/draw/animimp.cxx  |4 
 xmloff/source/draw/eventimp.cxx |2 
 xmloff/source/draw/layerimp.cxx |2 
 xmloff/source/draw/sdxmlexp.cxx |3 
 xmloff/source/draw/sdxmlimp.cxx |1 
 xmloff/source/draw/shapeexport.cxx  |1 
 xmloff/source/draw/shapeimport.cxx  |3 
 xmloff/source/draw/ximp3dscene.cxx  |1 
 xmloff/source/draw/ximpcustomshape.cxx  |4 
 xmloff/source/draw/ximpshap.cxx |2 
 xmloff/source/draw/ximpshow.cxx |2 
 xmloff/source/draw/ximpstyl.cxx |6 
 xmloff/source/forms/controlpropertyhdl.cxx  |1 
 xmloff/source/forms/controlpropertymap.cxx  |2 
 xmloff/source/forms/elementexport.cxx   |2 
 xmloff/source/forms/formenums.cxx   |6 
 xmloff/source/forms/layerimport.cxx |5 
 xmloff/source/forms/officeforms.cxx |1 
 xmloff/source/forms/property_meta_data.cxx  |2 
 xmloff/source/forms/propertyimport.cxx  |1 
 xmloff/source/meta/xmlversion.cxx   |1 
 xmloff/source/script/XMLEventsImportContext.cxx |2 
 xmloff/source/script/XMLScriptContextFactory.cxx|1 
 xmloff/source/script/XMLStarBasicContextFactory.cxx |1 
 xmloff/source/script/xmlbasicscript.cxx |5 
 xmloff/source/style/DashStyle.cxx   |2 
 xmloff/source/style/DrawAspectHdl.cxx   |1 
 xmloff/source/style/FillStyleContext.cxx|4 
 xmloff/source/style/GradientStyle.cxx   |2 
 xmloff/source/style/HatchStyle.cxx  |2 
 xmloff/source/style/ImageStyle.cxx  |2 
 xmloff/source/style/MarkerStyle.cxx |1 
 xmloff/source/style/PageMasterImportPropMapper.cxx  |1 
 xmloff/source/style/StylePropertiesContext.cxx  |2 
 xmloff/source/style/TransGradientStyle.cxx  |2 
 xmloff/source/style/XMLBackgroundImageContext.cxx   |2 
 xmloff/source/style/XMLFootnoteSeparatorImport.cxx  |5 
 xmloff/source/style/XMLThemeContext.cxx |8 
 xmloff/source/style/impastpl.cxx|2 
 xmloff/source/style/prstylei.cxx|1 
 

core.git: animations/source

2024-03-08 Thread Gabor Kelemen (via logerrit)
 animations/source/animcore/animcore.cxx |4 
 1 file changed, 4 deletions(-)

New commits:
commit 4f680db872ae42912a417ca8d68f68e6acc8d3dd
Author: Gabor Kelemen 
AuthorDate: Thu Feb 22 12:03:04 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Fri Mar 8 09:13:28 2024 +0100

tdf#146619 Recheck animations/ with IWYU

Change-Id: I72a2f335ba2a786ddd0b59ecad76bfa039e5cdec
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164487
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/animations/source/animcore/animcore.cxx 
b/animations/source/animcore/animcore.cxx
index a8511a4051f2..9e097ec98733 100644
--- a/animations/source/animcore/animcore.cxx
+++ b/animations/source/animcore/animcore.cxx
@@ -45,16 +45,12 @@
 #include 
 #include 
 #include 
-#include 
-#include 
 #include 
 #include 
 #include 
-#include 
 
 #include 
 
-#include 
 #include 
 #include 
 #include 


core.git: animations/Library_animcore.mk basegfx/CppunitTest_basegfx.mk binaryurp/CppunitTest_binaryurp_test-cache.mk binaryurp/CppunitTest_binaryurp_test-unmarshal.mk binaryurp/Library_binaryurp.mk c

2024-03-06 Thread Gabor Kelemen (via logerrit)
 animations/Library_animcore.mk  |2 --
 basegfx/CppunitTest_basegfx.mk  |2 --
 binaryurp/CppunitTest_binaryurp_test-cache.mk   |2 --
 binaryurp/CppunitTest_binaryurp_test-unmarshal.mk   |2 --
 binaryurp/Library_binaryurp.mk  |2 --
 comphelper/CppunitTest_comphelper_parallelsort_test.mk  |6 +-
 comphelper/CppunitTest_comphelper_syntaxhighlight_test.mk   |4 
 comphelper/CppunitTest_comphelper_threadpool_test.mk|4 
 comphelper/CppunitTest_comphelper_variadictemplates_test.mk |4 
 cppu/CppunitTest_cppu_qa_any.mk |2 --
 cppu/CppunitTest_cppu_qa_reference.mk   |2 --
 cppu/CppunitTest_cppu_test_cppumaker.mk |2 --
 cppu/Library_cppu.mk|2 --
 cppu/Library_log_uno_uno.mk |2 --
 helpcompiler/Executable_HelpLinker.mk   |1 -
 helpcompiler/Library_helplinker.mk  |1 -
 hwpfilter/CppunitTest_hwpfilter_test_hwpfilter.mk   |2 --
 hwpfilter/Library_hwp.mk|1 -
 i18nlangtag/CppunitTest_i18nlangtag_test_languagetag.mk |2 --
 i18nlangtag/Library_i18nlangtag.mk  |1 -
 i18npool/CppunitTest_i18npool_defaultnumberingprovider.mk   |4 
 i18npool/Library_i18npool.mk|1 -
 i18nutil/Library_i18nutil.mk|1 -
 io/Library_io.mk|2 --
 jvmfwk/Library_jvmfwk.mk|1 -
 o3tl/CppunitTest_o3tl_tests.mk  |2 --
 opencl/Library_opencl.mk|1 -
 package/Library_package2.mk |1 -
 pyuno/Library_pythonloader.mk   |1 -
 pyuno/Library_pyuno.mk  |1 -
 registry/Library_reg.mk |2 --
 salhelper/CppunitTest_salhelper_testapi.mk  |2 --
 sax/CppunitTest_sax.mk  |2 --
 sax/CppunitTest_sax_parser.mk   |4 
 sax/CppunitTest_sax_xmlimport.mk|4 
 sax/Library_sax.mk  |3 ---
 scaddins/Library_analysis.mk|2 --
 scaddins/Library_date.mk|2 --
 scaddins/Library_pricing.mk |2 --
 sccomp/CppunitTest_sccomp_solver.mk |4 
 sccomp/CppunitTest_sccomp_swarmsolvertest.mk|4 
 sccomp/Library_solver.mk|1 -
 sot/Library_sot.mk  |2 --
 store/Library_store.mk  |2 --
 unotools/CppunitTest_unotools_fontcvt.mk|2 --
 unotools/CppunitTest_unotools_fontdefs.mk   |2 --
 xmlhelp/Library_ucpchelp1.mk|1 -
 xmlreader/Library_xmlreader.mk  |2 --
 48 files changed, 1 insertion(+), 103 deletions(-)

New commits:
commit ab95ed2c4b1eddc2188bd455653a77140aa3816c
Author: Gabor Kelemen 
AuthorDate: Tue Mar 5 22:35:50 2024 +0100
Commit: Thorsten Behrens 
CommitDate: Wed Mar 6 21:23:17 2024 +0100

Use less boost_headers in low level libraries

Most of these don't use boost themselves, nor do they need
it transitively since the use of boost::optional was removed

Change-Id: Ic9dee1c4e160b313ec5b91677b02ffdea6c5779d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164440
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/animations/Library_animcore.mk b/animations/Library_animcore.mk
index ff35201c19d0..f0c8dab926ff 100644
--- a/animations/Library_animcore.mk
+++ b/animations/Library_animcore.mk
@@ -19,8 +19,6 @@
 
 $(eval $(call gb_Library_Library,animcore))
 
-$(eval $(call gb_Library_use_external,animcore,boost_headers))
-
 $(eval $(call 
gb_Library_set_componentfile,animcore,animations/source/animcore/animcore,services))
 
 $(eval $(call gb_Library_use_sdk_api,animcore))
diff --git a/basegfx/CppunitTest_basegfx.mk b/basegfx/CppunitTest_basegfx.mk
index 219025e8e3e6..dde57afb7a62 100644
--- a/basegfx/CppunitTest_basegfx.mk
+++ b/basegfx/CppunitTest_basegfx.mk
@@ -9,8 +9,6 @@
 
 $(eval $(call gb_CppunitTest_CppunitTest,basegfx))
 
-$(eval $(call gb_CppunitTest_use_external,basegfx,boost_headers))
-
 $(eval $(call gb_CppunitTest_use_sdk_api,basegfx))
 
 $(eval $(call gb_CppunitTest_use_libraries,basegfx,\
diff --git 

core.git: Branch 'distro/collabora/co-24.04' - drawinglayer/Library_drawinglayer.mk drawinglayer/source include/svtools svtools/source svx/source

2024-02-23 Thread Gabor Kelemen (via logerrit)
 drawinglayer/Library_drawinglayer.mk|4 ++
 drawinglayer/source/primitive2d/controlprimitive2d.cxx  |4 +-
 drawinglayer/source/primitive2d/sceneprimitive2d.cxx|3 +
 drawinglayer/source/processor2d/vclpixelprocessor2d.cxx |6 +--
 include/svtools/optionsdrawinglayer.hxx |6 ---
 svtools/source/config/optionsdrawinglayer.cxx   |   31 
 svx/source/sdr/overlay/overlayselection.cxx |3 +
 svx/source/svdraw/svddrgv.cxx   |6 +--
 8 files changed, 16 insertions(+), 47 deletions(-)

New commits:
commit 94dc600334cbadeb5d37205893688b29ce856e90
Author: Gabor Kelemen 
AuthorDate: Mon Nov 13 02:36:26 2023 +0100
Commit: Caolán McNamara 
CommitDate: Fri Feb 23 11:04:32 2024 +0100

Drop some wrapper methods from SvtOptionsDrawinglayer

just use the wrapped officecfg methods instead of:
IsSolidDragCreate
IsRenderDecoratedTextDirect
IsRenderSimpleTextDirect
GetQuadratic3DRenderLimit
GetQuadraticFormControlRenderLimit
IsTransparentSelection

Change-Id: Ie0f3ec0f8fdbbf08facfff1a372c666c8a0c8979
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160654
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163792
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Caolán McNamara 

diff --git a/drawinglayer/Library_drawinglayer.mk 
b/drawinglayer/Library_drawinglayer.mk
index c654275bdd11..e5c02487741a 100644
--- a/drawinglayer/Library_drawinglayer.mk
+++ b/drawinglayer/Library_drawinglayer.mk
@@ -57,6 +57,10 @@ $(eval $(call gb_Library_use_libraries,drawinglayer,\
 vcl \
 ))
 
+$(eval $(call gb_Library_use_custom_headers,drawinglayer,\
+officecfg/registry \
+))
+
 ifeq ($(OS),WNT)
 $(eval $(call gb_Library_use_system_win32_libs,drawinglayer,\
gdi32 \
diff --git a/drawinglayer/source/primitive2d/controlprimitive2d.cxx 
b/drawinglayer/source/primitive2d/controlprimitive2d.cxx
index c8448efa981f..fc6f69be521d 100644
--- a/drawinglayer/source/primitive2d/controlprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/controlprimitive2d.cxx
@@ -37,10 +37,10 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
+#include 
 
 using namespace com::sun::star;
 
@@ -99,7 +99,7 @@ namespace drawinglayer::primitive2d
 basegfx::B2DVector 
aDiscreteSize(rViewInformation.getObjectToViewTransformation() * aScale);
 
 // limit to a maximum square size, e.g. 300x150 pixels 
(45000)
-const double 
fDiscreteMax(SvtOptionsDrawinglayer::GetQuadraticFormControlRenderLimit());
+const double 
fDiscreteMax(officecfg::Office::Common::Drawinglayer::QuadraticFormControlRenderLimit::get());
 const double fDiscreteQuadratic(aDiscreteSize.getX() * 
aDiscreteSize.getY());
 const bool bScaleUsed(fDiscreteQuadratic > fDiscreteMax);
 double fFactor(1.0);
diff --git a/drawinglayer/source/primitive2d/sceneprimitive2d.cxx 
b/drawinglayer/source/primitive2d/sceneprimitive2d.cxx
index e2f44b690aa5..78402a22ba3f 100644
--- a/drawinglayer/source/primitive2d/sceneprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/sceneprimitive2d.cxx
@@ -36,6 +36,7 @@
 #include 
 #include 
 #include 
+#include 
 
 using namespace com::sun::star;
 
@@ -243,7 +244,7 @@ namespace drawinglayer::primitive2d
 double fViewSizeX(aVisibleDiscreteRange.getWidth());
 double fViewSizeY(aVisibleDiscreteRange.getHeight());
 const double fViewVisibleArea(fViewSizeX * fViewSizeY);
-const double 
fMaximumVisibleArea(SvtOptionsDrawinglayer::GetQuadratic3DRenderLimit());
+const double 
fMaximumVisibleArea(officecfg::Office::Common::Drawinglayer::Quadratic3DRenderLimit::get());
 double fReduceFactor(1.0);
 
 if(fViewVisibleArea > fMaximumVisibleArea)
diff --git a/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx 
b/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx
index 8748b78cd34e..f9b0e0df6159 100644
--- a/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx
+++ b/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx
@@ -63,7 +63,7 @@
 #include 
 #include 
 
-#include 
+#include 
 #include 
 
 using namespace com::sun::star;
@@ -403,7 +403,7 @@ void 
VclPixelProcessor2D::processTextSimplePortionPrimitive2D(
 const DrawModeFlags nOriginalDrawMode(mpOutputDevice->GetDrawMode());
 adaptTextToFillDrawMode();
 
-if (SvtOptionsDrawinglayer::IsRenderSimpleTextDirect())
+if (officecfg::Office::Common::Drawinglayer::RenderSimpleTextDirect::get())
 {
 RenderTextSimpleOrDecoratedPortionPrimitive2D(rCandidate);
 }
@@ -423,7 +423,7 @@ void 
VclPixelProcessor2D::processTextDecoratedPortionPrimitive2D(
 const DrawModeFlags 

core.git: Branch 'distro/collabora/co-23.05' - drawinglayer/Library_drawinglayer.mk drawinglayer/source include/svtools svtools/source svx/source

2024-02-23 Thread Gabor Kelemen (via logerrit)
 drawinglayer/Library_drawinglayer.mk|4 ++
 drawinglayer/source/primitive2d/controlprimitive2d.cxx  |4 +-
 drawinglayer/source/primitive2d/sceneprimitive2d.cxx|3 +
 drawinglayer/source/processor2d/vclpixelprocessor2d.cxx |6 +--
 include/svtools/optionsdrawinglayer.hxx |6 ---
 svtools/source/config/optionsdrawinglayer.cxx   |   31 
 svx/source/sdr/overlay/overlayselection.cxx |3 +
 svx/source/svdraw/svddrgv.cxx   |6 +--
 8 files changed, 16 insertions(+), 47 deletions(-)

New commits:
commit a87b0e96447e7554eb47d0e1969a85d05837acd1
Author: Gabor Kelemen 
AuthorDate: Mon Nov 13 02:36:26 2023 +0100
Commit: Miklos Vajna 
CommitDate: Fri Feb 23 11:02:44 2024 +0100

Drop some wrapper methods from SvtOptionsDrawinglayer

just use the wrapped officecfg methods instead of:
IsSolidDragCreate
IsRenderDecoratedTextDirect
IsRenderSimpleTextDirect
GetQuadratic3DRenderLimit
GetQuadraticFormControlRenderLimit
IsTransparentSelection

Change-Id: Ie0f3ec0f8fdbbf08facfff1a372c666c8a0c8979
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160654
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163793
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Miklos Vajna 

diff --git a/drawinglayer/Library_drawinglayer.mk 
b/drawinglayer/Library_drawinglayer.mk
index 8945e1c462c8..8b0b8f19ea5b 100644
--- a/drawinglayer/Library_drawinglayer.mk
+++ b/drawinglayer/Library_drawinglayer.mk
@@ -52,6 +52,10 @@ $(eval $(call gb_Library_use_libraries,drawinglayer,\
 vcl \
 ))
 
+$(eval $(call gb_Library_use_custom_headers,drawinglayer,\
+officecfg/registry \
+))
+
 $(eval $(call gb_Library_add_exception_objects,drawinglayer,\
 drawinglayer/source/animation/animationtiming \
 drawinglayer/source/attribute/fillgraphicattribute \
diff --git a/drawinglayer/source/primitive2d/controlprimitive2d.cxx 
b/drawinglayer/source/primitive2d/controlprimitive2d.cxx
index 765a21afacfb..09f9b5cb59e8 100644
--- a/drawinglayer/source/primitive2d/controlprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/controlprimitive2d.cxx
@@ -36,10 +36,10 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
+#include 
 
 using namespace com::sun::star;
 
@@ -98,7 +98,7 @@ namespace drawinglayer::primitive2d
 basegfx::B2DVector 
aDiscreteSize(rViewInformation.getObjectToViewTransformation() * aScale);
 
 // limit to a maximum square size, e.g. 300x150 pixels 
(45000)
-const double 
fDiscreteMax(SvtOptionsDrawinglayer::GetQuadraticFormControlRenderLimit());
+const double 
fDiscreteMax(officecfg::Office::Common::Drawinglayer::QuadraticFormControlRenderLimit::get());
 const double fDiscreteQuadratic(aDiscreteSize.getX() * 
aDiscreteSize.getY());
 const bool bScaleUsed(fDiscreteQuadratic > fDiscreteMax);
 double fFactor(1.0);
diff --git a/drawinglayer/source/primitive2d/sceneprimitive2d.cxx 
b/drawinglayer/source/primitive2d/sceneprimitive2d.cxx
index e2f44b690aa5..78402a22ba3f 100644
--- a/drawinglayer/source/primitive2d/sceneprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/sceneprimitive2d.cxx
@@ -36,6 +36,7 @@
 #include 
 #include 
 #include 
+#include 
 
 using namespace com::sun::star;
 
@@ -243,7 +244,7 @@ namespace drawinglayer::primitive2d
 double fViewSizeX(aVisibleDiscreteRange.getWidth());
 double fViewSizeY(aVisibleDiscreteRange.getHeight());
 const double fViewVisibleArea(fViewSizeX * fViewSizeY);
-const double 
fMaximumVisibleArea(SvtOptionsDrawinglayer::GetQuadratic3DRenderLimit());
+const double 
fMaximumVisibleArea(officecfg::Office::Common::Drawinglayer::Quadratic3DRenderLimit::get());
 double fReduceFactor(1.0);
 
 if(fViewVisibleArea > fMaximumVisibleArea)
diff --git a/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx 
b/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx
index 43b8a4fa55bc..b812060d712e 100644
--- a/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx
+++ b/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx
@@ -63,7 +63,7 @@
 #include 
 #include 
 
-#include 
+#include 
 #include 
 
 using namespace com::sun::star;
@@ -403,7 +403,7 @@ void 
VclPixelProcessor2D::processTextSimplePortionPrimitive2D(
 const DrawModeFlags nOriginalDrawMode(mpOutputDevice->GetDrawMode());
 adaptTextToFillDrawMode();
 
-if (SvtOptionsDrawinglayer::IsRenderSimpleTextDirect())
+if (officecfg::Office::Common::Drawinglayer::RenderSimpleTextDirect::get())
 {
 RenderTextSimpleOrDecoratedPortionPrimitive2D(rCandidate);
 }
@@ -423,7 +423,7 @@ void 

core.git: bridges/IwyuFilter_bridges.yaml

2024-02-23 Thread Gabor Kelemen (via logerrit)
 bridges/IwyuFilter_bridges.yaml |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 7be51eca1e509723e66973ed644f4c49cb27b608
Author: Gabor Kelemen 
AuthorDate: Thu Feb 22 09:19:22 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Fri Feb 23 09:32:48 2024 +0100

Update IwyuFilter in bridges

after commit 4b0c46dc61df243cda94f4a0af8946e076d1af54

Change-Id: If7c1d2a2b0d459271c0835f8fcdf084aa3482990
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163719
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/bridges/IwyuFilter_bridges.yaml b/bridges/IwyuFilter_bridges.yaml
index 00fbd47b3e87..92bb94d9a1e4 100644
--- a/bridges/IwyuFilter_bridges.yaml
+++ b/bridges/IwyuFilter_bridges.yaml
@@ -4,6 +4,9 @@ excludelist:
 bridges/source/cpp_uno/gcc3_linux_x86-64/abi.hxx:
 # No .hxx -> .h replacement in URE headers
 - typelib/typedescription.hxx
+bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:
+# Actually needed to not crash in fuzzing
+- cxxabi.h
 bridges/source/cpp_uno/gcc3_linux_x86-64/except.cxx:
 # No .hxx -> .h replacement in URE headers
 - typelib/typedescription.hxx


core.git: sw/uiconfig

2024-02-09 Thread Gabor Kelemen (via logerrit)
 sw/uiconfig/swriter/ui/sidebartableedit.ui |  265 +++--
 1 file changed, 144 insertions(+), 121 deletions(-)

New commits:
commit f4a726ddac042497b9553c7eb64372ed60fccaea
Author: Gabor Kelemen 
AuthorDate: Fri Feb 9 18:36:15 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Sat Feb 10 01:08:55 2024 +0100

Resave with newer Glade

Change-Id: I2f0704d924f37e61330240065a63faedb6645025
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163201
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/sw/uiconfig/swriter/ui/sidebartableedit.ui 
b/sw/uiconfig/swriter/ui/sidebartableedit.ui
index 37c8ec58f551..55c4a839ef30 100644
--- a/sw/uiconfig/swriter/ui/sidebartableedit.ui
+++ b/sw/uiconfig/swriter/ui/sidebartableedit.ui
@@ -1,72 +1,73 @@
 
-
+
 
   
   
 100
-1
-10
+1
+10
   
   
 100
-1
-10
+1
+10
   
   
   
 True
-False
+False
 
-  
+  
   
 True
-False
+False
 True
-6
+6
 vertical
-3
-6
-True
+3
+6
+True
 
   
 True
-True
-Row Height
+True
+Row Height
 True
 0
 True
 adjustment1
   
   
-0
-6
+0
+6
   
 
 
   
 True
-False
+False
 start
 Insert:
-True
-insert
+True
+insert
   
   
-0
-0
+0
+0
   
 
 
   
 True
-True
-icons
-False
+True
+icons
+False
 2
 
   
 True
-True
+False
+True
   
   
 False
@@ -76,7 +77,8 @@
 
   
 True
-True
+False
+True
   
   
 False
@@ -86,7 +88,8 @@
 
   
 True
-True
+False
+True
   
   
 False
@@ -96,7 +99,8 @@
 
   
 True
-True
+False
+True
   
   
 False
@@ -105,35 +109,36 @@
 
   
   
-0
-1
+0
+1
   
 
 
   
 True
-False
+False
 start
 Select:
-True
-select
+True
+select
   
   
-0
-2
+0
+2
   
 
 
   
 True
-True
-icons
-False
+True
+icons
+False
 2
 
   
 True
-True
+False
+True
   
   
 False
@@ -143,7 +148,8 @@
 
   
 True
-True
+False
+True
   
   
 False
@@ -153,7 +159,8 @@
 
   
 True
-True
+False
+True
   
   
 False
@@ -163,7 +170,8 @@
 
   
 True
-True
+False
+True
   
   
 False
@@ -172,77 +180,78 @@
 
   
   
-0
-3
+0
+3
   
 
 
   
 True
-False
+False
   
   
-0
-4
+0
+4
 2
   
 
 
   
 True
-True
-Column Width
+True
+Column Width
 True
 0
 True
 adjustment2
   
   
-1
-6
+1
+6
   
 
 
   
 True
-False
+False
 start
 center
 Row height:
-True
-rowheight
+True
+rowheight
   
   
-0
-5
+0
+5
  

core.git: bridges/IwyuFilter_bridges.yaml bridges/source

2024-02-08 Thread Gabor Kelemen (via logerrit)
 bridges/IwyuFilter_bridges.yaml  |   13 +
 bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx |1 -
 bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx |4 
 bridges/source/cpp_uno/gcc3_linux_x86-64/except.cxx  |1 +
 bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx|2 +-
 bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx   |2 --
 bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx |4 
 bridges/source/cpp_uno/shared/bridge.cxx |1 -
 bridges/source/cpp_uno/shared/component.cxx  |2 --
 bridges/source/cpp_uno/shared/vtablefactory.cxx  |2 --
 bridges/source/jni_uno/jni_base.h|4 
 bridges/source/jni_uno/jni_bridge.cxx|2 +-
 bridges/source/jni_uno/jni_bridge.h  |7 ++-
 bridges/source/jni_uno/jni_data.cxx  |1 +
 bridges/source/jni_uno/jni_info.cxx  |3 +--
 bridges/source/jni_uno/jni_info.h|1 -
 bridges/source/jni_uno/jni_java2uno.cxx  |5 +++--
 bridges/source/jni_uno/jni_uno2java.cxx  |3 +--
 18 files changed, 24 insertions(+), 34 deletions(-)

New commits:
commit f93ae0455c4d515be1ca663725a6e58d64a7e393
Author: Gabor Kelemen 
AuthorDate: Sat Feb 3 18:03:45 2024 +0100
Commit: Thorsten Behrens 
CommitDate: Thu Feb 8 15:19:14 2024 +0100

Check bridges with IWYU

Only the parts tha build on x64 arch

See tdf#42949 for motivation

Change-Id: Ifa3c5107887f5ab7837beee83d9603e8c883a7a5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162961
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/bridges/IwyuFilter_bridges.yaml b/bridges/IwyuFilter_bridges.yaml
new file mode 100644
index ..071db0504370
--- /dev/null
+++ b/bridges/IwyuFilter_bridges.yaml
@@ -0,0 +1,13 @@
+---
+assumeFilename: bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx
+excludelist:
+bridges/source/cpp_uno/gcc3_linux_x86-64/abi.hxx:
+# No .hxx -> .h replacement in URE headers
+- typelib/typedescription.hxx
+bridges/source/cpp_uno/gcc3_linux_x86-64/except.cxx:
+# No .hxx -> .h replacement in URE headers
+- typelib/typedescription.hxx
+bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx:
+# Actually needed
+- callvirtualmethod.hxx
+- share.hxx
diff --git a/bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx 
b/bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx
index 243e42d057e8..4f724dbb6861 100644
--- a/bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx
+++ b/bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx
@@ -55,7 +55,6 @@
 #include "abi.hxx"
 
 #include 
-#include 
 
 using namespace x86_64;
 
diff --git a/bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx 
b/bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx
index bd6d9e61796d..eb57c2ac92c5 100644
--- a/bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx
+++ b/bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx
@@ -18,9 +18,6 @@
  */
 
 
-#include 
-
-#include 
 #include 
 
 #include 
@@ -36,7 +33,6 @@
 
 #include "abi.hxx"
 #include "call.hxx"
-#include "rtti.hxx"
 #include "share.hxx"
 
 using namespace ::com::sun::star::uno;
diff --git a/bridges/source/cpp_uno/gcc3_linux_x86-64/except.cxx 
b/bridges/source/cpp_uno/gcc3_linux_x86-64/except.cxx
index daee12731ef1..ed62f404f439 100644
--- a/bridges/source/cpp_uno/gcc3_linux_x86-64/except.cxx
+++ b/bridges/source/cpp_uno/gcc3_linux_x86-64/except.cxx
@@ -28,6 +28,7 @@
 #include "rtti.hxx"
 #include "share.hxx"
 
+#include 
 
 using namespace ::std;
 using namespace ::com::sun::star::uno;
diff --git a/bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx 
b/bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx
index 9bce77bc8468..eeff17303990 100644
--- a/bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx
+++ b/bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx
@@ -20,6 +20,7 @@
 #include 
 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -36,7 +37,6 @@
 #include 
 
 #include "rtti.hxx"
-#include "share.hxx"
 
 namespace {
 
diff --git a/bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx 
b/bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx
index d7657bcc04be..6752eeaf6c3d 100644
--- a/bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx
+++ b/bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx
@@ -21,9 +21,7 @@
 
 #include 
 #include 
-#include 
 
-#include 
 #ifndef _GLIBCXX_CDTOR_CALLABI // new in GCC 4.7 cxxabi.h
 #define _GLIBCXX_CDTOR_CALLABI
 #endif
diff --git a/bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx 
b/bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx
index 496702120ab4..25277857f82e 100644
--- a/bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx
+++ b/bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx
@@ -17,13 +17,9 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#include 
-
 #include 
 #include 
 
-#include 
-
 

core.git: Branch 'libreoffice-24-2' - helpcontent2

2024-02-06 Thread Gabor Kelemen (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ca1db558aa4081b8ab0f8351252f7e16fa635fe7
Author: Gabor Kelemen 
AuthorDate: Tue Feb 6 11:59:45 2024 +0100
Commit: Gerrit Code Review 
CommitDate: Tue Feb 6 11:59:45 2024 +0100

Update git submodules

* Update helpcontent2 from branch 'libreoffice-24-2'
  to f2ee21b4f0df120c737d7357e7d6dd2df92b4e9c
  - tdf#159568 Fix link to extensions page -> Dictionaries category

Change-Id: I729264913b54c797193bb6b9c238c8d72a94608c
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/163045
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 
(cherry picked from commit 3323d51dec401d59a5b0163294922d2487ba91a8)
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/163014

diff --git a/helpcontent2 b/helpcontent2
index 05baaa8a5236..f2ee21b4f0df 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 05baaa8a523645e77639e811a5296935f17e75e7
+Subproject commit f2ee21b4f0df120c737d7357e7d6dd2df92b4e9c


help.git: Branch 'libreoffice-24-2' - source/text

2024-02-06 Thread Gabor Kelemen (via logerrit)
 source/text/swriter/guide/spellcheck_dialog.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f2ee21b4f0df120c737d7357e7d6dd2df92b4e9c
Author: Gabor Kelemen 
AuthorDate: Tue Feb 6 11:53:15 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Tue Feb 6 11:59:45 2024 +0100

tdf#159568 Fix link to extensions page -> Dictionaries category

Change-Id: I729264913b54c797193bb6b9c238c8d72a94608c
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/163045
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 
(cherry picked from commit 3323d51dec401d59a5b0163294922d2487ba91a8)
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/163014

diff --git a/source/text/swriter/guide/spellcheck_dialog.xhp 
b/source/text/swriter/guide/spellcheck_dialog.xhp
index 0e61d3e40b..cb70371fbe 100644
--- a/source/text/swriter/guide/spellcheck_dialog.xhp
+++ b/source/text/swriter/guide/spellcheck_dialog.xhp
@@ -35,7 +35,7 @@
 
 Checking Spelling and 
Grammar
 You can 
manually check the spelling and grammar of a text selection or the entire 
document.
-To check 
the spelling and the grammar of a text, the appropriate dictionaries must be 
installed. For many languages three different dictionaries exist: a 
spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers 
one language only. Grammar checkers can be downloaded and installed as 
extensions. See the https://extensions.libreoffice.org/extension-center?getCategories=Dictionary;>extensions
 web page.
+To check 
the spelling and the grammar of a text, the appropriate dictionaries must be 
installed. For many languages three different dictionaries exist: a 
spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers 
one language only. Grammar checkers can be downloaded and installed as 
extensions. See the https://extensions.libreoffice.org/?Tags[]=50;>extensions web 
page.
 The spellcheck 
starts at the current cursor position, or at the beginning of the text 
selection.
 
 


core.git: helpcontent2

2024-02-06 Thread Gabor Kelemen (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bca870566c65e22d9665b9f7dcb2144ca0f59a8a
Author: Gabor Kelemen 
AuthorDate: Tue Feb 6 11:58:36 2024 +0100
Commit: Gerrit Code Review 
CommitDate: Tue Feb 6 11:58:36 2024 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 84b2341aeb073ecc7d29228d9ddedc1ee0677a32
  - tdf#159568 Fix link to extensions page -> Dictionaries category

Change-Id: I729264913b54c797193bb6b9c238c8d72a94608c
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/163045
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/helpcontent2 b/helpcontent2
index a4f8a947b7b8..84b2341aeb07 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit a4f8a947b7b84ee6b957e1f20b80adae2bf1026d
+Subproject commit 84b2341aeb073ecc7d29228d9ddedc1ee0677a32


help.git: source/text

2024-02-06 Thread Gabor Kelemen (via logerrit)
 source/text/swriter/guide/spellcheck_dialog.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 84b2341aeb073ecc7d29228d9ddedc1ee0677a32
Author: Gabor Kelemen 
AuthorDate: Tue Feb 6 11:53:15 2024 +0100
Commit: Gabor Kelemen 
CommitDate: Tue Feb 6 11:58:36 2024 +0100

tdf#159568 Fix link to extensions page -> Dictionaries category

Change-Id: I729264913b54c797193bb6b9c238c8d72a94608c
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/163045
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/source/text/swriter/guide/spellcheck_dialog.xhp 
b/source/text/swriter/guide/spellcheck_dialog.xhp
index 0e61d3e40b..cb70371fbe 100644
--- a/source/text/swriter/guide/spellcheck_dialog.xhp
+++ b/source/text/swriter/guide/spellcheck_dialog.xhp
@@ -35,7 +35,7 @@
 
 Checking Spelling and 
Grammar
 You can 
manually check the spelling and grammar of a text selection or the entire 
document.
-To check 
the spelling and the grammar of a text, the appropriate dictionaries must be 
installed. For many languages three different dictionaries exist: a 
spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers 
one language only. Grammar checkers can be downloaded and installed as 
extensions. See the https://extensions.libreoffice.org/extension-center?getCategories=Dictionary;>extensions
 web page.
+To check 
the spelling and the grammar of a text, the appropriate dictionaries must be 
installed. For many languages three different dictionaries exist: a 
spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers 
one language only. Grammar checkers can be downloaded and installed as 
extensions. See the https://extensions.libreoffice.org/?Tags[]=50;>extensions web 
page.
 The spellcheck 
starts at the current cursor position, or at the beginning of the text 
selection.
 
 


help.git: source/text

2024-01-25 Thread Gabor Kelemen (via logerrit)
 source/text/shared/00/0002.xhp   |8 +---
 source/text/shared/01/password_main.xhp  |2 +-
 source/text/shared/guide/cmis-remote-files-setup.xhp |   10 --
 source/text/shared/guide/cmis-remote-files.xhp   |4 ++--
 source/text/shared/guide/doc_save.xhp|1 -
 source/text/shared/main0650.xhp  |2 +-
 source/text/shared/optionen/01030500.xhp |2 +-
 source/text/swriter/01/05060800.xhp  |2 +-
 8 files changed, 11 insertions(+), 20 deletions(-)

New commits:
commit c762a3dc812420858edbab9bf841ca69c133b985
Author: Gabor Kelemen 
AuthorDate: Thu Jan 25 02:59:21 2024 +0100
Commit: Olivier Hallot 
CommitDate: Thu Jan 25 16:36:37 2024 +0100

tdf#146386 (related) FTP protocol is no longer supported

so remove references to it from helpcontent

Change-Id: If0dc888fbb8106d23a250047772224043a313c60
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/162527
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/shared/00/0002.xhp 
b/source/text/shared/00/0002.xhp
index baede546f3..a63d1bae74 100644
--- a/source/text/shared/00/0002.xhp
+++ b/source/text/shared/00/0002.xhp
@@ -66,12 +66,6 @@
 Frames are 
useful for designing the layout of HTML pages. $[officename] uses 
floating frames into which you can place objects such as graphics, movie files 
and sound. The context menu of a frame shows the options for restoring or 
editing frame contents. Some of these commands are also listed in Edit - 
Object when the frame is selected.
 
 
-
-
-FTP
-FTP stands for 
File Transfer Protocol and is the standard transfer protocol for files in the 
Internet. An FTP server is a program on a computer connected to the Internet 
which stores files to be transmitted with the aid of FTP. While FTP is 
responsible for transmitting and downloading Internet files, HTTP (Hypertext Transfer 
Protocol) provides the connection setup and data transfer between WWW servers 
and clients.
-
-
 
 
   HTML; definition
@@ -200,7 +194,7 @@
 
 
 URL
-The Uniform 
Resource Locator (URL) displays the address of a document or a server in the 
Internet. The general structure of a URL varies according to type and is 
generally in the form Service://Hostname:Port/Path/Page#Mark although not all 
elements are always required. An URL can be a FTP address, a WWW (HTTP) 
address, a file address or an email address.
+The Uniform 
Resource Locator (URL) displays the address of a document or a server in the 
Internet. The general structure of a URL varies according to type and is 
generally in the form Service://Hostname:Port/Path/Page#Mark although not all 
elements are always required. An URL can be a WWW (HTTP) address, a file 
address or an email address.
 
 
 
diff --git a/source/text/shared/01/password_main.xhp 
b/source/text/shared/01/password_main.xhp
index a74fa571b2..f9809564d7 100644
--- a/source/text/shared/01/password_main.xhp
+++ b/source/text/shared/01/password_main.xhp
@@ -33,7 +33,7 @@
  Set Master Password
  Assign a master password to protect the access 
to a saved password.
  
-You can save some passwords for the duration of a session, or 
permanently to a file protected by a master password. For example, 
passwords for accessing WebDAV or FTP servers are stored permanently if you 
enter a master password when prompted. Otherwise, they are only stored for the 
current session.removed text see i71792
+You can save some passwords for the duration of a session, or 
permanently to a file protected by a master password. For example, 
passwords for accessing WebDAV servers are stored permanently if you enter a 
master password when prompted. Otherwise, they are only stored for the current 
session.removed text see i71792
 You must enter the master password to access a file or service 
that is protected by a saved password. You only need to enter the master 
password once during a session.
  
  
diff --git a/source/text/shared/guide/cmis-remote-files-setup.xhp 
b/source/text/shared/guide/cmis-remote-files-setup.xhp
index 2c088f6872..6448f572f5 100644
--- a/source/text/shared/guide/cmis-remote-files-setup.xhp
+++ b/source/text/shared/guide/cmis-remote-files-setup.xhp
@@ -93,26 +93,24 @@
 Once the connection is defined, click 
OK to connect. The dialog will dim until the connection is 
established with the server. A dialog asking for the user name and 
the password may pop up to let you log in the server. Proceed entering the 
right user name and password.
 
   SSH;remote file service setup
-  FTP;remote file service setup
-  remote file service setup;FTP
   remote file service setup;SSH
 
 
-Connecting to FTP and SSH servers
+Connecting to SSH servers
 
 
 
   
-Type: FTP or SSH
+Type: SSH
   
   
 Host: the server URL, usually in the form file.service.com
   
   

core.git: helpcontent2

2024-01-25 Thread Gabor Kelemen (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6fa4af11e045f2c365923df90dceafd4e954146a
Author: Gabor Kelemen 
AuthorDate: Thu Jan 25 16:36:37 2024 +0100
Commit: Gerrit Code Review 
CommitDate: Thu Jan 25 16:36:37 2024 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to c762a3dc812420858edbab9bf841ca69c133b985
  - tdf#146386 (related) FTP protocol is no longer supported

so remove references to it from helpcontent

Change-Id: If0dc888fbb8106d23a250047772224043a313c60
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/162527
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 5d2a29ee4f45..c762a3dc8124 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 5d2a29ee4f4556b0133e73ea429c9c1aaede0581
+Subproject commit c762a3dc812420858edbab9bf841ca69c133b985


core.git: sfx2/uiconfig

2024-01-21 Thread Gabor Kelemen (via logerrit)
 sfx2/uiconfig/ui/descriptioninfopage.ui |   37 +++-
 1 file changed, 36 insertions(+), 1 deletion(-)

New commits:
commit 075b4f44b966a8799ee937e4e5a009d498c7aba4
Author: Gabor Kelemen 
AuthorDate: Mon Jan 22 01:41:32 2024 +0100
Commit: Thorsten Behrens 
CommitDate: Mon Jan 22 08:42:07 2024 +0100

tdf#157868 Add accessible descriptions to new Dublin Core metadata boxes

that were still missing them.

See also: 
https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#section-3

Change-Id: I7f76d2c5598aa53bc6faf6afa5f5e60788ae7ef9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162357
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/sfx2/uiconfig/ui/descriptioninfopage.ui 
b/sfx2/uiconfig/ui/descriptioninfopage.ui
index e5383b583487..3b4ba17fe3ab 100644
--- a/sfx2/uiconfig/ui/descriptioninfopage.ui
+++ b/sfx2/uiconfig/ui/descriptioninfopage.ui
@@ -247,7 +247,7 @@
 True
 
   
-contributor accessible 
description
+Enter 
information about persons or organizations contributing to the 
document.
   
 
   
@@ -262,6 +262,11 @@
 True
 True
 True
+
+  
+Enter 
information about geographic coverage of the document.
+  
+
   
   
 1
@@ -274,6 +279,11 @@
 True
 True
 True
+
+  
+Enter 
information to unambiguously identify the document.
+  
+
   
   
 1
@@ -286,6 +296,11 @@
 True
 True
 True
+
+  
+Enter 
information about the publisher of the document.
+  
+
   
   
 1
@@ -298,6 +313,11 @@
 True
 True
 True
+
+  
+Enter 
information about a resource related to the document.
+  
+
   
   
 1
@@ -310,6 +330,11 @@
 True
 True
 True
+
+  
+Enter 
information about intellectual property rights associated with the 
document.
+  
+
   
   
 1
@@ -322,6 +347,11 @@
 True
 True
 True
+
+  
+Enter 
information about a related resource from which the document is derived 
from.
+  
+
   
   
 1
@@ -334,6 +364,11 @@
 True
 True
 True
+
+  
+Enter 
information about the nature or genre of the document.
+  
+
   
   
 1


core.git: xmloff/inc xmloff/IwyuFilter_xmloff.yaml xmloff/source

2024-01-21 Thread Gabor Kelemen (via logerrit)
 xmloff/IwyuFilter_xmloff.yaml|   16 +++-
 xmloff/inc/AutoStyleEntry.hxx|1 -
 xmloff/inc/DomExport.hxx |4 +---
 xmloff/inc/StyleMap.hxx  |1 -
 xmloff/inc/XMLFootnoteConfigurationImportContext.hxx |1 -
 xmloff/inc/XMLImageMapContext.hxx|1 -
 xmloff/inc/XMLThemeContext.hxx   |4 +---
 xmloff/inc/animimp.hxx   |2 --
 xmloff/inc/fasttokenhandler.hxx  |3 ---
 xmloff/inc/forms/property_handler.hxx|1 -
 xmloff/inc/txtflde.hxx   |4 
 xmloff/inc/txtfldi.hxx   |3 +--
 xmloff/inc/xmlprop.hxx   |2 ++
 xmloff/inc/xmltabe.hxx   |1 -
 xmloff/source/chart/PropertyMap.hxx  |   11 ---
 xmloff/source/chart/PropertyMaps.cxx |   10 ++
 xmloff/source/chart/SchXMLAxisContext.hxx|1 -
 xmloff/source/chart/SchXMLDataTableContext.hxx   |2 --
 xmloff/source/chart/SchXMLExport.cxx |1 +
 xmloff/source/chart/SchXMLLegendContext.hxx  |2 --
 xmloff/source/chart/SchXMLPropertyMappingContext.hxx |1 -
 xmloff/source/draw/ximp3dscene.hxx   |1 -
 xmloff/source/draw/ximpgrp.hxx   |1 -
 xmloff/source/draw/ximpshow.hxx  |1 -
 xmloff/source/draw/ximpstyl.hxx  |5 +
 xmloff/source/forms/layerimport.hxx  |2 +-
 xmloff/source/script/xmlbasicscript.hxx  |5 +
 xmloff/source/style/XMLFontStylesContext_impl.hxx|1 +
 xmloff/source/style/impastpl.hxx |6 --
 xmloff/source/text/XMLRedlineExport.hxx  |1 -
 xmloff/source/text/txtflde.cxx   |1 +
 xmloff/source/text/txtfldi.cxx   |1 +
 xmloff/source/text/xmlcontentcontrolcontext.hxx  |2 +-
 xmloff/source/xforms/TokenContext.hxx|5 +
 34 files changed, 27 insertions(+), 77 deletions(-)

New commits:
commit f351faa3f71f3a1f6225b3d3c015b4d3a1373e38
Author: Gabor Kelemen 
AuthorDate: Sun Dec 24 04:41:35 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Mon Jan 22 08:41:30 2024 +0100

tdf#146619 Recheck xmloff/*hxx with IWYU

Change-Id: I09676a038370ca76ad4d4ef54dae14fbd3bd287f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162319
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/xmloff/IwyuFilter_xmloff.yaml b/xmloff/IwyuFilter_xmloff.yaml
index 02fb7c1b4010..b187263736d0 100644
--- a/xmloff/IwyuFilter_xmloff.yaml
+++ b/xmloff/IwyuFilter_xmloff.yaml
@@ -1,25 +1,15 @@
 ---
 assumeFilename: xmloff/source/core/xmlexp.cxx
 excludelist:
+xmloff/inc/DomExport.hxx:
+# Needed for css shortcut
+- sal/types.h
 xmloff/inc/XMLImageMapExport.hxx:
 # Needed for css shortcut
 - sal/types.h
 xmloff/inc/XMLTextColumnsExport.hxx:
 # Needed for css shortcut
 - sal/types.h
-xmloff/source/chart/PropertyMap.hxx:
-# Needed for constants used in arrays
-- xmloff/maptype.hxx
-- xmloff/xmlnamespace.hxx
-- xmloff/xmlement.hxx
-- com/sun/star/chart/ChartAxisArrangeOrderType.hpp
-- com/sun/star/chart/ChartAxisLabelPosition.hpp
-- com/sun/star/chart/ChartAxisMarkPosition.hpp
-- com/sun/star/chart/ErrorBarStyle.hpp
-- com/sun/star/chart/ChartSolidType.hpp
-- com/sun/star/chart/ChartDataRowSource.hpp
-- com/sun/star/chart/DataLabelPlacement.hpp
-- com/sun/star/chart/MissingValueTreatment.hpp
 xmloff/source/forms/logging.hxx:
 # Used after #ifdef TIMELOG
 - stack
diff --git a/xmloff/inc/AutoStyleEntry.hxx b/xmloff/inc/AutoStyleEntry.hxx
index 15f99f1b113f..9e3aadbd32df 100644
--- a/xmloff/inc/AutoStyleEntry.hxx
+++ b/xmloff/inc/AutoStyleEntry.hxx
@@ -13,7 +13,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 
diff --git a/xmloff/inc/DomExport.hxx b/xmloff/inc/DomExport.hxx
index b6646214f7e8..ebf3779b0bff 100644
--- a/xmloff/inc/DomExport.hxx
+++ b/xmloff/inc/DomExport.hxx
@@ -18,14 +18,12 @@
  */
 #pragma once
 
-// the Solaris compiler apparently needs the following include:
-#include 
+#include 
 
 class SvXMLExport;
 namespace com::sun::star {
 namespace uno { template class Reference; }
 namespace xml::dom { class XDocument; }
-namespace xml::dom { class XNode; }
 }
 
 void exportDom( SvXMLExport&, const 
css::uno::Reference& );
diff --git a/xmloff/inc/StyleMap.hxx b/xmloff/inc/StyleMap.hxx
index 796245f52fc7..0e7fe1b40b06 100644
--- a/xmloff/inc/StyleMap.hxx
+++ b/xmloff/inc/StyleMap.hxx
@@ -19,7 +19,6 @@
 
 #pragma once
 
-#include 
 #include 
 #include 
 #include 
diff --git 

core.git: cui/source include/unotools unotools/source

2024-01-21 Thread Gabor Kelemen (via logerrit)
 cui/source/options/optsave.cxx|   32 
 include/unotools/optionsdlg.hxx   |3 ---
 unotools/source/config/optionsdlg.cxx |   22 ++
 3 files changed, 2 insertions(+), 55 deletions(-)

New commits:
commit 09f6ad451156cdc5c2d0f398237a72b99598f32f
Author: Gabor Kelemen 
AuthorDate: Wed Jan 17 17:31:47 2024 +0100
Commit: Thorsten Behrens 
CommitDate: Mon Jan 22 08:30:54 2024 +0100

Remove DetectHiddenControls method of locking down UI

It is used only on the Load/Save - General page, and it's
redundant with using officecfg methods and setting UI elements
representing locked down keys as insensitive + showing a lock icon

Change-Id: I689e7925198f8aac60b5711bf1c349c45a5ab62a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162267
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/cui/source/options/optsave.cxx b/cui/source/options/optsave.cxx
index 4c292a75ac3a..3a05d369beea 100644
--- a/cui/source/options/optsave.cxx
+++ b/cui/source/options/optsave.cxx
@@ -40,7 +40,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -55,8 +54,6 @@ using namespace com::sun::star::beans;
 using namespace com::sun::star::container;
 using namespace comphelper;
 
-#define CFG_PAGE_AND_GROUP  u"General", u"LoadSave"
-
 
 struct SvxSaveTabPage_Impl
 {
@@ -210,8 +207,6 @@ SvxSaveTabPage::SvxSaveTabPage(weld::Container* pPage, 
weld::DialogController* p
 aLink = LINK( this, SvxSaveTabPage, FilterHdl_Impl );
 m_xDocTypeLB->connect_changed( aLink );
 m_xSaveAsLB->connect_changed( aLink );
-
-DetectHiddenControls();
 }
 
 SvxSaveTabPage::~SvxSaveTabPage()
@@ -224,33 +219,6 @@ std::unique_ptr 
SvxSaveTabPage::Create(weld::Container* pPage, weld:
 return std::make_unique(pPage, pController, *rAttrSet);
 }
 
-void SvxSaveTabPage::DetectHiddenControls()
-{
-SvtOptionsDialogOptions aOptionsDlgOpt;
-
-if ( aOptionsDlgOpt.IsOptionHidden( u"Backup", CFG_PAGE_AND_GROUP ) )
-{
-// hide controls of "Backup"
-m_xBackupCB->hide();
-m_xBackupIntoDocumentFolderCB->hide();
-}
-
-if ( aOptionsDlgOpt.IsOptionHidden( u"AutoSave", CFG_PAGE_AND_GROUP ) )
-{
-// hide controls of "AutoSave"
-m_xAutoSaveCB->hide();
-m_xAutoSaveEdit->hide();
-m_xMinuteFT->hide();
-}
-
-if ( aOptionsDlgOpt.IsOptionHidden( u"UserAutoSave", CFG_PAGE_AND_GROUP ) )
-{
-// hide controls of "UserAutoSave"
-m_xUserAutoSaveCB->hide();
-}
-
-}
-
 OUString SvxSaveTabPage::GetAllStrings()
 {
 OUString sAllStrings;
diff --git a/include/unotools/optionsdlg.hxx b/include/unotools/optionsdlg.hxx
index 4e0d78245b65..0be3fa149522 100644
--- a/include/unotools/optionsdlg.hxx
+++ b/include/unotools/optionsdlg.hxx
@@ -36,9 +36,6 @@ public:
 boolIsGroupHidden   (   std::u16string_view _rGroup ) const;
 boolIsPageHidden(   std::u16string_view _rPage,
 std::u16string_view _rGroup ) const;
-boolIsOptionHidden  (   std::u16string_view _rOption,
-std::u16string_view _rPage,
-std::u16string_view _rGroup ) const;
 private:
 bool IsHidden( const OUString& _rPath ) const;
 
diff --git a/unotools/source/config/optionsdlg.cxx 
b/unotools/source/config/optionsdlg.cxx
index c88bd095106c..35e964afbf08 100644
--- a/unotools/source/config/optionsdlg.cxx
+++ b/unotools/source/config/optionsdlg.cxx
@@ -30,10 +30,9 @@ using namespace com::sun::star::uno;
 
 constexpr OUString ROOT_NODE = u"OptionsDialogGroups"_ustr;
 constexpr OUString PAGES_NODE = u"Pages"_ustr;
-constexpr OUString OPTIONS_NODE = u"Options"_ustr;
 
 namespace {
-enum NodeType{ NT_Group, NT_Page, NT_Option };
+enum NodeType{ NT_Group, NT_Option };
 }
 constexpr OUString g_sPathDelimiter = u"/"_ustr;
 static void ReadNode(
@@ -72,13 +71,6 @@ static void ReadNode(
 break;
 }
 
-case NT_Page :
-{
-sSet = OPTIONS_NODE;
-nLen = 2;
-break;
-}
-
 case NT_Option :
 {
 nLen = 1;
@@ -106,7 +98,7 @@ static void ReadNode(
 for ( const auto& rNode : aNodes )
 {
 OUString sSubNodeName( sNodes + g_sPathDelimiter + rNode );
-ReadNode( xHierarchyAccess, aOptionNodeList, sSubNodeName, _eType 
== NT_Group ? NT_Page : NT_Option );
+ReadNode( xHierarchyAccess, aOptionNodeList, sSubNodeName, 
NT_Option );
 }
 }
 }
@@ -119,10 +111,6 @@ static OUString getPagePath( std::u16string_view _rPage )
 {
 return OUString( OUString::Concat(PAGES_NODE) + "/" + _rPage + "/" );
 }
-static OUString getOptionPath( std::u16string_view _rOption )
-{
-return OUString( OUString::Concat(OPTIONS_NODE) + "/" + _rOption + "/" );
-}
 
 bool 

core.git: uui/inc

2024-01-21 Thread Gabor Kelemen (via logerrit)
 uui/inc/ids.hrc |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2782fa00d3ec8d401a44ae91cd3fda9d1d60188b
Author: Gabor Kelemen 
AuthorDate: Sun Jan 21 23:24:23 2024 +0100
Commit: Thorsten Behrens 
CommitDate: Mon Jan 22 08:29:46 2024 +0100

Fix meaning of warning message

Change-Id: I6421d4f6ec5a79d7f3aea531e9e1361cd12abdc7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162355
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/uui/inc/ids.hrc b/uui/inc/ids.hrc
index e36a66d847d4..acbb0bfcd763 100644
--- a/uui/inc/ids.hrc
+++ b/uui/inc/ids.hrc
@@ -38,7 +38,7 @@ const std::pair RID_UUI_ERRHDL[] =
   ERRCODE_UUI_IO_ALREADYEXISTS },
 { NC_("RID_UUI_ERRHDL", "Target already exists."),
   ERRCODE_UUI_IO_TARGETALREADYEXISTS },
-{ NC_("RID_UUI_ERRHDL", "You are saving a password protected Basic library 
containing the following large module(s): 
$(ARG1)
Storing those large module(s) in binary format, which is necessary for password 
protection, makes them unreadable in versions older than LibreOffice 5.0.3. If 
you want this please split the module into smaller pieces."),
+{ NC_("RID_UUI_ERRHDL", "You are saving a password protected Basic library 
containing the following large module(s): 
$(ARG1)
Storing those large module(s) in binary format, which is necessary for password 
protection, makes them unreadable in versions older than LibreOffice 5.0.3. If 
you want to avoid this please split the module into smaller pieces."),
   ERRCODE_UUI_IO_MODULESIZEEXCEEDED },
 { NC_("RID_UUI_ERRHDL", "Beware!

You are about to load a very unusual sort of file ($(ARG2)) from the URL:

$(ARG1)

Are you certain that this file is a legacy document created many years ago?"),
   ERRCODE_UUI_IO_EXOTICFILEFORMAT },


core.git: sfx2/uiconfig

2024-01-21 Thread Gabor Kelemen (via logerrit)
 sfx2/uiconfig/ui/descriptioninfopage.ui |  238 +---
 1 file changed, 104 insertions(+), 134 deletions(-)

New commits:
commit 2bb79f8feaf54fe2ad43c262c9efe89e7fd54ed9
Author: Gabor Kelemen 
AuthorDate: Mon Jan 22 01:32:11 2024 +0100
Commit: Thorsten Behrens 
CommitDate: Mon Jan 22 08:28:32 2024 +0100

Resave with newer Glade version

Change-Id: I6b5ab915a9a8f823a71d5441fd7181014457f563
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162356
Tested-by: Jenkins
Reviewed-by: Taichi Haradaguchi  <20001...@ymail.ne.jp>

diff --git a/sfx2/uiconfig/ui/descriptioninfopage.ui 
b/sfx2/uiconfig/ui/descriptioninfopage.ui
index 708b410e3305..e5383b583487 100644
--- a/sfx2/uiconfig/ui/descriptioninfopage.ui
+++ b/sfx2/uiconfig/ui/descriptioninfopage.ui
@@ -1,197 +1,197 @@
 
-
+
 
   
-  
+  
   
 True
-False
+False
 True
 True
-6
-6
-12
+6
+6
+12
 
   
 True
-False
+False
 _Title:
-True
-title
+True
+title
 1
   
   
-0
-0
+0
+0
   
 
 
   
 True
-False
+False
 _Subject:
-True
-subject
+True
+subject
 1
   
   
-0
-1
+0
+1
   
 
 
   
 True
-False
+False
 _Keywords:
-True
-keywords
+True
+keywords
 1
   
   
-0
-2
+0
+2
   
 
 
   
 True
-False
+False
 start
 Co_ntributor:
-True
-contributor
+True
+contributor
 1
   
   
-0
-3
+0
+3
   
 
 
   
 True
-False
+False
 start
 Co_verage:
-True
-coverage
+True
+coverage
 1
   
   
-0
-4
+0
+4
   
 
 
   
 True
-False
+False
 start
 _Identifier:
-True
-identifier
+True
+identifier
 1
   
   
-0
-5
+0
+5
   
 
 
   
 True
-False
+False
 start
 _Publisher:
-True
-publisher
+True
+publisher
 1
   
   
-0
-6
+0
+6
   
 
 
   
 True
-False
+False
 start
 R_elation:
-True
-relation
+True
+relation
 1
   
   
-0
-7
+0
+7
   
 
 
   
 True
-False
+False
 start
 Ri_ghts:
-True
-rights
+True
+rights
 1
   
   
-0
-8
+0
+8
   
 
 
   
 True
-False
+False
 start
 So_urce:
-True
-source
+True
+source
 1
   
   
-0
-9
+0
+9
   
 
 
   
 True
-False
+False
 start
 T_ype:
-True
-type
+True
+type
 1
   
   
-0
-10
+0
+10
   
 
 
   
 True
-False
+False
 start
 _Comments:
-True
-comments
+True
+comments
 1
   
   
-0
-11
+0
+11
   
 
 
   
 True
-True
+True
 True
 True
 
@@ -201,14 +201,14 @@
 
   
   
-1
-0
+1
+0
   
 
 
   
 True
-True
+True
 True
 True
 
@@ -218,14 +218,14 @@
 
   
   
-1
-1
+1
+1
   
 
 
   
 True
-True
+True
 True
 True
 
@@ -235,14 +235,14 @@
 
   
   
-1
-2
+1
+2
   
 
 
   
 True
-True
+True
 True
 True
 
@@ -252,135 +252,105 @@
 
   
   
-1
-3
+1
+3
   
 
 
   
 True
-True
+True
 True
 True
   
   
-1
-4
+1
+4
   
 
 
   
 True
-True
+True
 True
 True
-
-  
-
-  
-
   
   
-1
-5
+1
+5
   
 
 
   
 

core.git: sc/source

2024-01-05 Thread Gabor Kelemen (via logerrit)
 sc/source/filter/excel/excimp8.cxx  |9 -
 sc/source/filter/excel/expop2.cxx   |8 +++-
 sc/source/filter/excel/xiescher.cxx |9 -
 sc/source/filter/xcl97/xcl97rec.cxx |   11 +--
 4 files changed, 16 insertions(+), 21 deletions(-)

New commits:
commit df1e72b853d2ec8c565c8cdf35087824e6a98f40
Author: Gabor Kelemen 
AuthorDate: Mon Jan 1 02:15:52 2024 +0100
Commit: Thorsten Behrens 
CommitDate: Fri Jan 5 19:02:00 2024 +0100

Use officecfg instead of SvtFilterOptions wrapper in sc

Change-Id: I8f8ff35452147fe83a772d87eb94e86b8877cac8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161590
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/sc/source/filter/excel/excimp8.cxx 
b/sc/source/filter/excel/excimp8.cxx
index 28a819f9d6fa..2df1ec268324 100644
--- a/sc/source/filter/excel/excimp8.cxx
+++ b/sc/source/filter/excel/excimp8.cxx
@@ -24,7 +24,7 @@
 #include 
 #include 
 #include 
-#include 
+#include 
 
 #include 
 #include 
@@ -323,7 +323,6 @@ void ImportExcel8::ReadBasic()
 {
 ScDocShell* pShell = GetDocShell();
 tools::SvRef xRootStrg = GetRootStorage();
-const SvtFilterOptions& rFilterOpt = SvtFilterOptions::Get();
 if( !pShell || !xRootStrg.is() )
 return;
 
@@ -331,9 +330,9 @@ void ImportExcel8::ReadBasic()
 {
 // #FIXME need to get rid of this, we can also do this from within oox
 // via the "ooo.vba.VBAGlobals" service
-if( ( rFilterOpt.IsLoadExcelBasicCode() ||
-  rFilterOpt.IsLoadExcelBasicStorage() ) &&
-rFilterOpt.IsLoadExcelBasicExecutable() )
+if( ( officecfg::Office::Calc::Filter::Import::VBA::Load::get() ||
+  officecfg::Office::Calc::Filter::Import::VBA::Save::get() ) &&
+  officecfg::Office::Calc::Filter::Import::VBA::Executable::get() )
 {
 // see if we have the XCB stream
 tools::SvRef xXCB = xRootStrg->OpenSotStream( 
"XCB", StreamMode::STD_READ );
diff --git a/sc/source/filter/excel/expop2.cxx 
b/sc/source/filter/excel/expop2.cxx
index 3ad57b358faf..936a09b2f3ed 100644
--- a/sc/source/filter/excel/expop2.cxx
+++ b/sc/source/filter/excel/expop2.cxx
@@ -17,8 +17,6 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
-#include 
-
 #include 
 #include 
 #include 
@@ -35,6 +33,7 @@
 #include 
 
 #include 
+#include 
 
 #include 
 #include 
@@ -82,8 +81,7 @@ ErrCode ExportBiff5::Write()
 eVbaExportMode = VBAExportMode::FULL_EXPORT;
 else
 {
-const SvtFilterOptions& rFilterOpt = SvtFilterOptions::Get();
-if (rFilterOpt.IsLoadExcelBasicStorage())
+if ( officecfg::Office::Calc::Filter::Import::VBA::Save::get() )
 eVbaExportMode = VBAExportMode::REEXPORT_STREAM;
 }
 }
@@ -115,7 +113,7 @@ ErrCode ExportBiff5::Write()
 static_cast(pDocShell->GetModel()), 
uno::UNO_QUERY_THROW);
 uno::Reference xDocProps
 = xDPS->getDocumentProperties();
-if ( SvtFilterOptions::Get().IsEnableCalcPreview() )
+if ( 
officecfg::Office::Common::Filter::Microsoft::Export::EnableExcelPreview::get() 
)
 {
 std::shared_ptr xMetaFile =
 pDocShell->GetPreviewMetaFile();
diff --git a/sc/source/filter/excel/xiescher.cxx 
b/sc/source/filter/excel/xiescher.cxx
index df2baef3468b..c6d0a972b78b 100644
--- a/sc/source/filter/excel/xiescher.cxx
+++ b/sc/source/filter/excel/xiescher.cxx
@@ -42,9 +42,9 @@
 #include 
 
 #include 
+#include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -3349,12 +3349,11 @@ XclImpDffConverter::XclImpDffConverter( const 
XclImpRoot& rRoot, SvStream& rDffS
 mnOleImpFlags( 0 ),
 mbNotifyMacroEventRead(false)
 {
-const SvtFilterOptions& rFilterOpt = SvtFilterOptions::Get();
-if( rFilterOpt.IsMathType2Math() )
+if( 
officecfg::Office::Common::Filter::Microsoft::Import::MathTypeToMath::get() )
 mnOleImpFlags |= OLE_MATHTYPE_2_STARMATH;
-if( rFilterOpt.IsWinWord2Writer() )
+if( 
officecfg::Office::Common::Filter::Microsoft::Import::WinWordToWriter::get() )
 mnOleImpFlags |= OLE_WINWORD_2_STARWRITER;
-if( rFilterOpt.IsPowerPoint2Impress() )
+if( 
officecfg::Office::Common::Filter::Microsoft::Import::PowerPointToImpress::get()
 )
 mnOleImpFlags |= OLE_POWERPOINT_2_STARIMPRESS;
 
 // try to open the 'Ctls' storage stream containing OCX control properties
diff --git a/sc/source/filter/xcl97/xcl97rec.cxx 
b/sc/source/filter/xcl97/xcl97rec.cxx
index e9ae7bdeba42..65facba4b739 100644
--- a/sc/source/filter/xcl97/xcl97rec.cxx
+++ b/sc/source/filter/xcl97/xcl97rec.cxx
@@ -43,7 +43,6 @@
 #include 
 #include 
 
-#include 
 #include 
 #include 
 #include 
@@ -64,6 +63,7 @@
 #include 
 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -1027,17 +1027,16 @@ void XclObjOle::WriteSubRecs( XclExpStream& rStrm 

core.git: oox/Library_oox.mk oox/source sd/source sfx2/source

2024-01-05 Thread Gabor Kelemen (via logerrit)
 oox/Library_oox.mk |4 
 oox/source/drawingml/shape.cxx |4 ++--
 sd/source/filter/ppt/pptin.cxx |   14 +++---
 sd/source/filter/sdpptwrp.cxx  |   17 -
 sfx2/source/doc/docfile.cxx|4 +---
 5 files changed, 22 insertions(+), 21 deletions(-)

New commits:
commit e6f77135b4cbb88e60c3a8ab40b9e416bef0f835
Author: Gabor Kelemen 
AuthorDate: Mon Jan 1 02:16:08 2024 +0100
Commit: Thorsten Behrens 
CommitDate: Fri Jan 5 19:01:25 2024 +0100

Use officecfg instead of SvtFilterOptions wrapper in sfx2, sd, oox

Change-Id: I1a404fe156c9c7859c1eb19d4dff9892f4598bc9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161591
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/oox/Library_oox.mk b/oox/Library_oox.mk
index 3043d7345f3d..343781331720 100644
--- a/oox/Library_oox.mk
+++ b/oox/Library_oox.mk
@@ -82,6 +82,10 @@ $(eval $(call gb_Library_use_externals,oox,\
 endif
 endif
 
+$(eval $(call gb_Library_use_custom_headers,oox,\
+officecfg/registry \
+))
+
 $(eval $(call gb_Library_set_componentfile,oox,oox/util/oox,services))
 
 # WASM_CHART change
diff --git a/oox/source/drawingml/shape.cxx b/oox/source/drawingml/shape.cxx
index c42a9f7820a3..5df335be727d 100644
--- a/oox/source/drawingml/shape.cxx
+++ b/oox/source/drawingml/shape.cxx
@@ -96,12 +96,12 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -461,7 +461,7 @@ void Shape::addShape(
 // metafile is only implemented for DOCX.
 bool bPowerPoint = 
dynamic_cast() != nullptr;
 
-if (!SvtFilterOptions::Get().IsSmartArt2Shape() && 
!bPowerPoint)
+if 
(!officecfg::Office::Common::Filter::Microsoft::Import::SmartArtToShapes::get() 
&& !bPowerPoint)
 convertSmartArtToMetafile( rFilterBase );
 }
 
diff --git a/sd/source/filter/ppt/pptin.cxx b/sd/source/filter/ppt/pptin.cxx
index 28c3fbe60127..83570ca2ba8f 100644
--- a/sd/source/filter/ppt/pptin.cxx
+++ b/sd/source/filter/ppt/pptin.cxx
@@ -68,7 +68,8 @@
 #include 
 #include 
 
-#include 
+#include 
+#include 
 #include 
 #include 
 #include 
@@ -199,16 +200,15 @@ ImplSdPPTImport::ImplSdPPTImport( SdDrawDocument* 
pDocument, SotStorage& rStorag
 }
 sal_uInt32 nSvxMSDffOLEConvFlags2 = 0;
 
-const SvtFilterOptions& rBasOpt = SvtFilterOptions::Get();
-if ( rBasOpt.IsLoadPPointBasicCode() )
+if (  officecfg::Office::Impress::Filter::Import::VBA::Load::get() )
 mnFilterOptions |= 1;
-if ( rBasOpt.IsMathType2Math() )
+if ( 
officecfg::Office::Common::Filter::Microsoft::Import::MathTypeToMath::get() )
 nSvxMSDffOLEConvFlags2 |= OLE_MATHTYPE_2_STARMATH;
-if ( rBasOpt.IsWinWord2Writer() )
+if ( 
officecfg::Office::Common::Filter::Microsoft::Import::WinWordToWriter::get() )
 nSvxMSDffOLEConvFlags2 |= OLE_WINWORD_2_STARWRITER;
-if ( rBasOpt.IsExcel2Calc() )
+if ( 
officecfg::Office::Common::Filter::Microsoft::Import::ExcelToCalc::get() )
 nSvxMSDffOLEConvFlags2 |= OLE_EXCEL_2_STARCALC;
-if ( rBasOpt.IsPowerPoint2Impress() )
+if ( 
officecfg::Office::Common::Filter::Microsoft::Import::PowerPointToImpress::get()
 )
 nSvxMSDffOLEConvFlags2 |= OLE_POWERPOINT_2_STARIMPRESS;
 
 InitSvxMSDffManager( nDggContainerOfs, pStData, nSvxMSDffOLEConvFlags2 );
diff --git a/sd/source/filter/sdpptwrp.cxx b/sd/source/filter/sdpptwrp.cxx
index 64a1fa1f1934..a553a0f7f8ac 100644
--- a/sd/source/filter/sdpptwrp.cxx
+++ b/sd/source/filter/sdpptwrp.cxx
@@ -22,11 +22,12 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
 #include 
+#include 
+#include 
 
 #include 
 #include 
@@ -191,16 +192,15 @@ bool SdPPTFilter::Export()
 if( mxModel.is() )
 {
 sal_uInt32  nCnvrtFlags = 0;
-const SvtFilterOptions& rFilterOptions = SvtFilterOptions::Get();
-if ( rFilterOptions.IsMath2MathType() )
+if ( 
officecfg::Office::Common::Filter::Microsoft::Export::MathToMathType::get() )
 nCnvrtFlags |= OLE_STARMATH_2_MATHTYPE;
-if ( rFilterOptions.IsWriter2WinWord() )
+if ( 
officecfg::Office::Common::Filter::Microsoft::Export::WriterToWinWord::get() )
 nCnvrtFlags |= OLE_STARWRITER_2_WINWORD;
-if ( rFilterOptions.IsCalc2Excel() )
+if ( 
officecfg::Office::Common::Filter::Microsoft::Export::CalcToExcel::get() )
 nCnvrtFlags |= OLE_STARCALC_2_EXCEL;
-if ( rFilterOptions.IsImpress2PowerPoint() )
+if ( 
officecfg::Office::Common::Filter::Microsoft::Export::ImpressToPowerPoint::get()
 )
 nCnvrtFlags |= OLE_STARIMPRESS_2_POWERPOINT;
-if ( rFilterOptions.IsEnablePPTPreview() )
+if ( 
officecfg::Office::Common::Filter::Microsoft::Export::EnablePowerPointPreview::get()
 )
 nCnvrtFlags |= 0x8000;
 
   

core.git: compilerplugins/clang desktop/source include/svtools solenv/clang-format svtools/Library_svt.mk svtools/source

2024-01-03 Thread Gabor Kelemen (via logerrit)
 compilerplugins/clang/staticmethods.cxx  |1 
 compilerplugins/clang/unusedvarsglobal.untouched.results |2 
 desktop/source/lib/init.cxx  |2 
 include/svtools/slidesorterbaropt.hxx|   62 --
 solenv/clang-format/excludelist  |2 
 svtools/Library_svt.mk   |1 
 svtools/source/config/slidesorterbaropt.cxx  |  425 ---
 7 files changed, 495 deletions(-)

New commits:
commit bae684927c46e6105e78863bd9ee8560426a1b95
Author: Gabor Kelemen 
AuthorDate: Fri Dec 29 00:58:06 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Wed Jan 3 15:38:17 2024 +0100

Drop now unused SvtSlideSorterBarOptions class

Change-Id: I9db309b15e490c9bd03e767c192ba364a4ffe214
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161452
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/compilerplugins/clang/staticmethods.cxx 
b/compilerplugins/clang/staticmethods.cxx
index 38180c1daa2c..a28d605b3af3 100644
--- a/compilerplugins/clang/staticmethods.cxx
+++ b/compilerplugins/clang/staticmethods.cxx
@@ -137,7 +137,6 @@ bool StaticMethods::TraverseCXXMethodDecl(const 
CXXMethodDecl * pCXXMethodDecl)
 || cdc.Class("SvtOptionsDrawinglayer").GlobalNamespace()
 || cdc.Class("SvtMenuOptions").GlobalNamespace()
 || cdc.Class("SvtToolPanelOptions").GlobalNamespace()
-|| cdc.Class("SvtSlideSorterBarOptions").GlobalNamespace()
 || (cdc.Class("SharedResources").Namespace("connectivity")
 .GlobalNamespace())
 || (cdc.Class("OParseContextClient").Namespace("svxform")
diff --git a/compilerplugins/clang/unusedvarsglobal.untouched.results 
b/compilerplugins/clang/unusedvarsglobal.untouched.results
index 4fcb089e21b3..8f96ddf92ab3 100644
--- a/compilerplugins/clang/unusedvarsglobal.untouched.results
+++ b/compilerplugins/clang/unusedvarsglobal.untouched.results
@@ -26,8 +26,6 @@ desktop/source/lib/init.cxx:7379
 svtools::ColorConfig aColorConfig
 desktop/source/lib/init.cxx:7380
 SvtMiscOptions aSvtMiscOptions
-desktop/source/lib/init.cxx:7381
-SvtSlideSorterBarOptions aSvtSlideSorterBarOptions
 desktop/source/lib/init.cxx:7382
 SvtCommandOptions aSvtCommandOptions
 desktop/source/lib/init.cxx:7383
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index a54ebc6e469f..01ee10facc71 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -220,7 +220,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -7522,7 +7521,6 @@ static void preloadData()
 static SvtCTLOptions aSvtCTLOptions;
 static svtools::ColorConfig aColorConfig;
 static SvtMiscOptions aSvtMiscOptions;
-static SvtSlideSorterBarOptions aSvtSlideSorterBarOptions;
 static SvtCommandOptions aSvtCommandOptions;
 static SvtCompatibilityOptions aSvtCompatibilityOptions;
 static SvtFilterOptions aSvtFilterOptions;
diff --git a/include/svtools/slidesorterbaropt.hxx 
b/include/svtools/slidesorterbaropt.hxx
deleted file mode 100644
index 9250838fafff..
--- a/include/svtools/slidesorterbaropt.hxx
+++ /dev/null
@@ -1,62 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#pragma once
-
-#include 
-#include 
-#include 
-
-/** forward declaration to our private date container implementation
-
-We use these class as internal member to support small memory requirements.
-You can create the container if it is necessary. The class which use these 
mechanism
-is faster and smaller then a complete implementation!
-*/
-class SvtSlideSorterBarOptions_Impl;
-
-/** collect information about sidebar group
-
-ttention This class is partially threadsafe.
-*/
-class SVT_DLLPUBLIC SvtSlideSorterBarOptions final : public 
utl::detail::Options
-{
-public:
-SvtSlideSorterBarOptions();
-virtual ~SvtSlideSorterBarOptions() override;
-
-bool GetVisibleImpressView() const;
-void SetVisibleImpressView( bool bVisible );
-bool 

core.git: sd/source

2024-01-02 Thread Gabor Kelemen (via logerrit)
 sd/source/ui/framework/module/SlideSorterModule.cxx |   29 +++-
 sd/source/ui/unoidl/unomodel.cxx|8 ++---
 2 files changed, 20 insertions(+), 17 deletions(-)

New commits:
commit 9fc28d7ef5def30a23960cf15334af1aec27460f
Author: Gabor Kelemen 
AuthorDate: Fri Dec 29 00:47:56 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Wed Jan 3 00:01:55 2024 +0100

Use officecfg instead of SvtSlideSorterBarOptions class

Change-Id: Ie2965f343e6df31502596c35e1d17c22bbccb142
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161451
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/sd/source/ui/framework/module/SlideSorterModule.cxx 
b/sd/source/ui/framework/module/SlideSorterModule.cxx
index 1b6bbb7f9fae..7d8304bec454 100644
--- a/sd/source/ui/framework/module/SlideSorterModule.cxx
+++ b/sd/source/ui/framework/module/SlideSorterModule.cxx
@@ -19,8 +19,10 @@
 
 #include "SlideSorterModule.hxx"
 
+#include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -29,7 +31,6 @@
 
 #include 
 #include 
-#include 
 
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
@@ -80,17 +81,17 @@ SlideSorterModule::SlideSorterModule (
 
 UpdateViewTabBar(nullptr);
 
-if (SvtSlideSorterBarOptions().GetVisibleImpressView())
+if 
(officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::ImpressView::get().has_value()
 && (!getenv("LO_TESTNAME") || !comphelper::LibreOfficeKit::isActive()))
 AddActiveMainView(FrameworkHelper::msImpressViewURL);
-if (SvtSlideSorterBarOptions().GetVisibleOutlineView())
+if 
(officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::OutlineView::get())
 AddActiveMainView(FrameworkHelper::msOutlineViewURL);
-if (SvtSlideSorterBarOptions().GetVisibleNotesView())
+if 
(officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::NotesView::get())
 AddActiveMainView(FrameworkHelper::msNotesViewURL);
-if (SvtSlideSorterBarOptions().GetVisibleHandoutView())
+if 
(officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::HandoutView::get())
 AddActiveMainView(FrameworkHelper::msHandoutViewURL);
-if (SvtSlideSorterBarOptions().GetVisibleSlideSorterView())
+if 
(officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::SlideSorterView::get().has_value()
 && !comphelper::LibreOfficeKit::isActive())
 AddActiveMainView(FrameworkHelper::msSlideSorterURL);
-if (SvtSlideSorterBarOptions().GetVisibleDrawView())
+if 
(officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::DrawView::get())
 AddActiveMainView(FrameworkHelper::msDrawViewURL);
 
 mxConfigurationController->addConfigurationChangeListener(
@@ -105,12 +106,14 @@ SlideSorterModule::~SlideSorterModule()
 
 void SlideSorterModule::SaveResourceState()
 {
-
SvtSlideSorterBarOptions().SetVisibleImpressView(IsResourceActive(FrameworkHelper::msImpressViewURL));
-
SvtSlideSorterBarOptions().SetVisibleOutlineView(IsResourceActive(FrameworkHelper::msOutlineViewURL));
-
SvtSlideSorterBarOptions().SetVisibleNotesView(IsResourceActive(FrameworkHelper::msNotesViewURL));
-
SvtSlideSorterBarOptions().SetVisibleHandoutView(IsResourceActive(FrameworkHelper::msHandoutViewURL));
-
SvtSlideSorterBarOptions().SetVisibleSlideSorterView(IsResourceActive(FrameworkHelper::msSlideSorterURL));
-
SvtSlideSorterBarOptions().SetVisibleDrawView(IsResourceActive(FrameworkHelper::msDrawViewURL));
+auto xChanges = comphelper::ConfigurationChanges::create();
+
officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::ImpressView::set(IsResourceActive(FrameworkHelper::msImpressViewURL),xChanges);
+
officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::OutlineView::set(IsResourceActive(FrameworkHelper::msOutlineViewURL),xChanges);
+
officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::NotesView::set(IsResourceActive(FrameworkHelper::msNotesViewURL),xChanges);
+
officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::HandoutView::set(IsResourceActive(FrameworkHelper::msHandoutViewURL),xChanges);
+
officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::SlideSorterView::set(IsResourceActive(FrameworkHelper::msSlideSorterURL),xChanges);
+
officecfg::Office::Impress::MultiPaneGUI::SlideSorterBar::Visible::DrawView::set(IsResourceActive(FrameworkHelper::msDrawViewURL),xChanges);
+xChanges->commit();
 }
 
 void SAL_CALL SlideSorterModule::notifyConfigurationChange (
diff --git a/sd/source/ui/unoidl/unomodel.cxx b/sd/source/ui/unoidl/unomodel.cxx
index 52c95e556561..075ee6e383a7 100644
--- a/sd/source/ui/unoidl/unomodel.cxx
+++ b/sd/source/ui/unoidl/unomodel.cxx
@@ -33,6 +33,7 @@
 #include 
 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -71,7 +72,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 

core.git: compilerplugins/clang desktop/source

2023-12-30 Thread Gabor Kelemen (via logerrit)
 compilerplugins/clang/unusedvarsglobal.untouched.results |2 --
 desktop/source/lib/init.cxx  |2 --
 2 files changed, 4 deletions(-)

New commits:
commit 2aeeb7647f5858a21091d89f201ec71959ef7d31
Author: Gabor Kelemen 
AuthorDate: Sun Dec 17 23:11:55 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Sat Dec 30 22:58:59 2023 +0100

SvtAccessibilityOptions no longer loads settings

Change-Id: Ia7404122029b6b7c6fe7ff879bb1143b3419fc32
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161239
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/compilerplugins/clang/unusedvarsglobal.untouched.results 
b/compilerplugins/clang/unusedvarsglobal.untouched.results
index 490665af3b1c..4fcb089e21b3 100644
--- a/compilerplugins/clang/unusedvarsglobal.untouched.results
+++ b/compilerplugins/clang/unusedvarsglobal.untouched.results
@@ -22,8 +22,6 @@ desktop/source/lib/init.cxx:7376
 SvtOptionsDialogOptions aDialogOptions
 desktop/source/lib/init.cxx:7377
 SvtCTLOptions aSvtCTLOptions
-desktop/source/lib/init.cxx:7378
-SvtAccessibilityOptions aSvtAccessibilityOptions
 desktop/source/lib/init.cxx:7379
 svtools::ColorConfig aColorConfig
 desktop/source/lib/init.cxx:7380
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index 2f82ab48225d..4b1658d95e20 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -218,7 +218,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -7521,7 +7520,6 @@ static void preloadData()
 #endif
 static SvtOptionsDialogOptions aDialogOptions;
 static SvtCTLOptions aSvtCTLOptions;
-static SvtAccessibilityOptions aSvtAccessibilityOptions;
 static svtools::ColorConfig aColorConfig;
 static SvtMiscOptions aSvtMiscOptions;
 static SvtSlideSorterBarOptions aSvtSlideSorterBarOptions;


core.git: svx/inc svx/IwyuFilter_svx.yaml svx/qa svx/source

2023-12-30 Thread Gabor Kelemen (via logerrit)
 svx/IwyuFilter_svx.yaml   |   18 +++---
 svx/inc/dragmt3d.hxx  |1 
 svx/inc/galleryfilestorage.hxx|1 
 svx/inc/galleryfilestorageentry.hxx   |1 
 svx/inc/sdr/primitive2d/sdrtextprimitive2d.hxx|1 
 svx/inc/sdr/properties/emptyproperties.hxx|2 -
 svx/inc/shapecollection.hxx   |1 
 svx/inc/tbxcolorupdate.hxx|2 -
 svx/qa/unit/ThemeTest.cxx |3 --
 svx/qa/unit/classicshapes.cxx |1 
 svx/qa/unit/customshapes.cxx  |5 ---
 svx/source/accessibility/AccessibleTextHelper.cxx |1 
 svx/source/accessibility/ChildrenManagerImpl.cxx  |1 
 svx/source/accessibility/ChildrenManagerImpl.hxx  |3 --
 svx/source/accessibility/charmapacc.cxx   |1 
 svx/source/customshapes/EnhancedCustomShapeFontWork.cxx   |1 
 svx/source/dialog/ClassificationDialog.cxx|1 
 svx/source/dialog/ThemeColorEditDialog.cxx|1 
 svx/source/dialog/ThemeColorValueSet.cxx  |1 
 svx/source/dialog/ThemeDialog.cxx |1 
 svx/source/dialog/docrecovery.cxx |1 
 svx/source/dialog/fntctrl.cxx |1 
 svx/source/dialog/framelinkarray.cxx  |1 
 svx/source/dialog/searchcharmap.cxx   |2 -
 svx/source/dialog/srchdlg.cxx |2 -
 svx/source/dialog/txencbox.cxx|1 
 svx/source/engine3d/dragmt3d.cxx  |1 
 svx/source/fmcomp/fmgridcl.cxx|1 
 svx/source/form/fmvwimp.cxx   |1 
 svx/source/gallery2/galleryfilestorage.cxx|1 
 svx/source/inc/StylesPreviewToolBoxControl.hxx|1 
 svx/source/items/customshapeitem.cxx  |1 
 svx/source/sdr/attribute/sdrallfillattributeshelper.cxx   |2 -
 svx/source/sdr/contact/viewcontactofgraphic.cxx   |1 
 svx/source/sdr/contact/viewcontactofsdrobjcustomshape.cxx |1 
 svx/source/sdr/contact/viewcontactofsdrpathobj.cxx|1 
 svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx  |1 
 svx/source/sdr/overlay/overlaymanager.cxx |1 
 svx/source/sdr/overlay/overlaymanagerbuffered.cxx |1 
 svx/source/sdr/overlay/overlaytools.cxx   |2 -
 svx/source/sdr/primitive2d/sdrattributecreator.cxx|1 
 svx/source/sdr/properties/attributeproperties.cxx |1 
 svx/source/sdr/properties/defaultproperties.cxx   |2 -
 svx/source/sidebar/area/AreaPropertyPanelBase.cxx |1 
 svx/source/sidebar/inspector/InspectorTextPanel.cxx   |2 -
 svx/source/sidebar/paragraph/ParaLineSpacingControl.cxx   |1 
 svx/source/sidebar/tools/ValueSetWithTextControl.cxx  |1 
 svx/source/styles/ColorSets.cxx   |1 
 svx/source/styles/CommonStylePreviewRenderer.cxx  |1 
 svx/source/svdraw/charthelper.cxx |1 
 svx/source/svdraw/clonelist.cxx   |2 -
 svx/source/svdraw/svddrgv.cxx |1 
 svx/source/svdraw/svdedtv.cxx |1 
 svx/source/svdraw/svdedtv1.cxx|1 
 svx/source/svdraw/svdetc.cxx  |4 ++-
 svx/source/svdraw/svdmark.cxx |3 --
 svx/source/svdraw/svdmodel.cxx|1 
 svx/source/svdraw/svdoattr.cxx|2 -
 svx/source/svdraw/svdobj.cxx  |5 ---
 svx/source/svdraw/svdomedia.cxx   |4 ---
 svx/source/svdraw/svdotext.cxx|1 
 svx/source/svdraw/svdpage.cxx |3 --
 svx/source/svdraw/svdpdf.cxx  |1 
 svx/source/svdraw/svdsnpv.cxx |1 
 svx/source/svdraw/svdundo.cxx |3 --
 svx/source/svdraw/svdview.cxx |1 
 svx/source/table/tablecolumn.cxx  |1 
 svx/source/table/tablemodel.cxx   |1 
 svx/source/table/tablerow.cxx |1 
 svx/source/tbxctrls/PaletteManager.cxx|3 --
 svx/source/tbxctrls/colrctrl.cxx  |1 
 svx/source/tbxctrls/grafctrl.cxx  |1 
 svx/source/tbxctrls/layctrl.cxx   |1 
 svx/source/tbxctrls/tbunocontroller.cxx   

core.git: include/svtools svtools/source

2023-12-28 Thread Gabor Kelemen (via logerrit)
 include/svtools/accessibilityoptions.hxx   |4 -
 svtools/source/config/accessibilityoptions.cxx |   71 -
 svtools/source/config/itemholder2.cxx  |5 -
 3 files changed, 80 deletions(-)

New commits:
commit a0e64251d98a8cd8506bafe3a71bff7eb0ac2bc9
Author: Gabor Kelemen 
AuthorDate: Sun Dec 17 17:18:56 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Thu Dec 28 11:16:54 2023 +0100

Drop SvtAccessibilityOptions_Impl class

It is not doing anything useful anymore since 2016
commit 2c8fe2e737b84ecd3dbac36a4fe6bd061bbd3bae
when all setter methods were removed as unused

Change-Id: If82c2d0a8007132d9521b43075506db5f8fa4389
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161238
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/include/svtools/accessibilityoptions.hxx 
b/include/svtools/accessibilityoptions.hxx
index 6cebf4e005c9..39b8b2a5b792 100644
--- a/include/svtools/accessibilityoptions.hxx
+++ b/include/svtools/accessibilityoptions.hxx
@@ -21,14 +21,10 @@
 #include 
 #include 
 
-class SvtAccessibilityOptions_Impl;
-
 class SAL_WARN_UNUSED SVT_DLLPUBLIC SvtAccessibilityOptions final :
 public utl::detail::Options
 {
 private:
-static SvtAccessibilityOptions_Impl* sm_pSingleImplConfig;
-static sal_Int32 sm_nAccessibilityRefCount;
 
 public:
 SvtAccessibilityOptions();
diff --git a/svtools/source/config/accessibilityoptions.cxx 
b/svtools/source/config/accessibilityoptions.cxx
index 877b0653335d..de22c5c658a3 100644
--- a/svtools/source/config/accessibilityoptions.cxx
+++ b/svtools/source/config/accessibilityoptions.cxx
@@ -35,61 +35,11 @@
 
 #include 
 
-#include "itemholder2.hxx"
-
 using namespace utl;
 using namespace com::sun::star::uno;
 
 #define HELP_TIP_TIMEOUT 0x // max. timeout setting to pretend a 
non-timeout
 
-// class SvtAccessibilityOptions_Impl 
-
-
-class SvtAccessibilityOptions_Impl
-{
-private:
-css::uno::Reference< css::container::XNameAccess > m_xCfg;
-css::uno::Reference< css::beans::XPropertySet > m_xNode;
-
-public:
-SvtAccessibilityOptions_Impl();
-};
-
-// initialization of static members --
-
-SvtAccessibilityOptions_Impl* SvtAccessibilityOptions::sm_pSingleImplConfig 
=nullptr;
-sal_Int32 
SvtAccessibilityOptions::sm_nAccessibilityRefCount(0);
-
-namespace
-{
-std::mutex& SingletonMutex()
-{
-static std::mutex SINGLETON;
-return SINGLETON;
-}
-}
-
-
-// class SvtAccessibilityOptions_Impl 
-
-
-SvtAccessibilityOptions_Impl::SvtAccessibilityOptions_Impl()
-{
-try
-{
-m_xCfg.set(
-::comphelper::ConfigurationHelper::openConfig(
-comphelper::getProcessComponentContext(),
-"org.openoffice.Office.Common/Accessibility",
-::comphelper::EConfigurationModes::Standard ),
-css::uno::UNO_QUERY);
-m_xNode.set(m_xCfg, css::uno::UNO_QUERY);
-}
-catch(const css::uno::Exception&)
-{
-DBG_UNHANDLED_EXCEPTION("svtools.config");
-m_xCfg.clear();
-}
-}
-
 void SvtAccessibilityOptions::SetVCLSettings()
 {
 AllSettings aAllSettings(Application::GetSettings());
@@ -168,31 +118,10 @@ void SvtAccessibilityOptions::SetVCLSettings()
 
 SvtAccessibilityOptions::SvtAccessibilityOptions()
 {
-if (!utl::ConfigManager::IsFuzzing())
-{
-std::unique_lock aGuard( SingletonMutex() );
-if(!sm_pSingleImplConfig)
-{
-sm_pSingleImplConfig = new SvtAccessibilityOptions_Impl;
-aGuard.unlock(); // because holdConfigItem will call this 
constructor
-svtools::ItemHolder2::holdConfigItem(EItem::AccessibilityOptions);
-}
-++sm_nAccessibilityRefCount;
-}
-//StartListening( *sm_pSingleImplConfig, sal_True );
 }
 
 SvtAccessibilityOptions::~SvtAccessibilityOptions()
 {
-//EndListening( *sm_pSingleImplConfig, sal_True );
-std::unique_lock aGuard( SingletonMutex() );
-if( !--sm_nAccessibilityRefCount )
-{
-//if( sm_pSingleImplConfig->IsModified() )
-//  sm_pSingleImplConfig->Commit();
-delete sm_pSingleImplConfig;
-sm_pSingleImplConfig = nullptr;
-}
 }
 
 
diff --git a/svtools/source/config/itemholder2.cxx 
b/svtools/source/config/itemholder2.cxx
index c41095247eca..adb287425df6 100644
--- a/svtools/source/config/itemholder2.cxx
+++ b/svtools/source/config/itemholder2.cxx
@@ -25,7 +25,6 @@
 #include 
 #include 
 
-#include 
 #include 
 #include 
 #include 
@@ -117,10 +116,6 @@ void ItemHolder2::impl_newItem(TItemInfo& rItem)
 {
 switch(rItem.eItem)
 {
-case EItem::AccessibilityOptions :
-rItem.pItem.reset( new SvtAccessibilityOptions() );
-break;
-
 case EItem::ColorConfig :
 

core.git: compilerplugins/clang include/svx sc/inc sc/source sd/source svx/source sw/inc sw/source

2023-12-24 Thread Gabor Kelemen (via logerrit)
 compilerplugins/clang/unusedfields.readonly.results |4 -
 include/svx/svdview.hxx |7 ---
 sc/inc/scmod.hxx|2 
 sc/source/ui/app/scmod.cxx  |7 ---
 sd/source/ui/inc/View.hxx   |2 
 sd/source/ui/view/sdview.cxx|   41 
 svx/source/svdraw/svdview.cxx   |   15 ---
 sw/inc/swmodule.hxx |2 
 sw/inc/view.hxx |1 
 sw/inc/viewsh.hxx   |1 
 sw/source/uibase/app/apphdl.cxx |   31 ---
 sw/source/uibase/inc/pview.hxx  |1 
 12 files changed, 1 insertion(+), 113 deletions(-)

New commits:
commit 4b818d79f9ba340e27c568bb1531e77e153c8eca
Author: Gabor Kelemen 
AuthorDate: Sun Dec 17 14:13:23 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Sun Dec 24 22:39:48 2023 +0100

Remove listeners of SvtAccessibilityOptions

This class no longer notifies listeners since 2019
commit 3135d820d0172ef5695a4b97cec505e6ad03d67a
so presumably the listeners can be dropped as well.

The sd part tried to execute SID commands which seem
to be removed since 2004
commit f77ad7f15f53526714518bb3562ba7de4ba0d45e

Change-Id: I81d234aabe10b53278c89ffd846240507854d0c1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161237
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/compilerplugins/clang/unusedfields.readonly.results 
b/compilerplugins/clang/unusedfields.readonly.results
index 4568b6b2368d..4c17e8a4d1b3 100644
--- a/compilerplugins/clang/unusedfields.readonly.results
+++ b/compilerplugins/clang/unusedfields.readonly.results
@@ -488,8 +488,6 @@ sc/inc/formulagroup.hxx:38
 sc::FormulaGroupEntry::(anonymous union at 
/home/noel/libo-plugin/sc/inc/formulagroup.hxx:35:5) mpCells ScFormulaCell **
 sc/inc/reordermap.hxx:20
 sc::ColRowReorderMapType maData DataType
-sc/inc/scmod.hxx:97
-ScModule m_pAccessOptions std::unique_ptr
 sc/inc/scmod.hxx:98
 ScModule m_pCTLOptions std::unique_ptr
 sc/inc/userlist.hxx:64
@@ -662,8 +660,6 @@ sw/inc/shellio.hxx:149
 SwReader mpStg tools::SvRef
 sw/inc/swevent.hxx:71
 SwCallMouseEvent::(anonymous union)::(unnamed struct at 
/home/noel/libo-plugin/sw/inc/swevent.hxx:69:9) pFormat const SwFrameFormat *
-sw/inc/swmodule.hxx:91
-SwModule m_pAccessibilityOptions std::unique_ptr
 sw/inc/swmodule.hxx:92
 SwModule m_pCTLOptions std::unique_ptr
 sw/qa/api/SwXHeadFootText.cxx:76
diff --git a/include/svx/svdview.hxx b/include/svx/svdview.hxx
index aeb364a985dc..3e48e4a904c9 100644
--- a/include/svx/svdview.hxx
+++ b/include/svx/svdview.hxx
@@ -23,7 +23,6 @@
 // levels free in svdmark itself (MS compiler include depth limit)
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -151,8 +150,6 @@ class SVXCORE_DLLPUBLIC SdrView : public SdrCreateView, 
public tools::WeakBase
 bool mbNoExtendedKeyDispatcher : 1;
 bool mbMasterPagePaintCaching : 1;
 
-SvtAccessibilityOptions maAccessibilityOptions;
-
 public:
 explicit SdrView(
 SdrModel& rSdrModel,
@@ -188,8 +185,6 @@ public:
 using SdrCreateView::RequestHelp;
 virtual bool Command(const CommandEvent& rCEvt, vcl::Window* pWin) 
override;
 
-virtual void ConfigurationChanged( utl::ConfigurationBroadcaster*, 
ConfigurationHints ) override;
-
 bool SetAttributes(const SfxItemSet& rSet, bool bReplaceAll=false) { 
return SdrCreateView::SetAttributes(rSet,bReplaceAll); }
 
 /* new interface src537 */
@@ -232,8 +227,6 @@ public:
 // and more...
 OUString GetStatusText();
 
-virtual void onAccessibilityOptionsChanged();
-
 // Do not create ObjectContact locally, but offer a call to allow override
 // and to create own derivations of ObjectContact
 virtual sdr::contact::ObjectContact* createViewSpecificObjectContact(
diff --git a/sc/inc/scmod.hxx b/sc/inc/scmod.hxx
index f95da4a46280..fe318c63e8b7 100644
--- a/sc/inc/scmod.hxx
+++ b/sc/inc/scmod.hxx
@@ -37,7 +37,6 @@
 class KeyEvent;
 class EditView;
 class SfxErrorHandler;
-class SvtAccessibilityOptions;
 class SvtCTLOptions;
 class SvtUserOptions;
 
@@ -94,7 +93,6 @@ class SAL_DLLPUBLIC_RTTI ScModule final : public SfxModule, 
public SfxListener,
 std::unique_ptr  m_pNavipiCfg;
 std::unique_ptr   m_pAddInCfg;
 std::unique_ptrm_pColorConfig;
-std::unique_ptr m_pAccessOptions;
 std::unique_ptr   m_pCTLOptions;
 std::unique_ptr  m_pUserOptions;
 std::unique_ptr  m_pErrorHdl;
diff --git a/sc/source/ui/app/scmod.cxx b/sc/source/ui/app/scmod.cxx
index 3fa3a7849b22..d31cfc675b64 100644
--- a/sc/source/ui/app/scmod.cxx
+++ b/sc/source/ui/app/scmod.cxx
@@ -176,7 +176,7 @@ ScModule::~ScModule()
 
 void 

core.git: include/svtools sc/source sd/source svtools/source svx/source sw/source

2023-12-24 Thread Gabor Kelemen (via logerrit)
 include/svtools/accessibilityoptions.hxx   |5 -
 sc/source/ui/view/output.cxx   |4 ++--
 sd/source/ui/annotations/annotationwindow.cxx  |3 ++-
 sd/source/ui/view/outlview.cxx |3 ++-
 svtools/source/config/accessibilityoptions.cxx |   16 
 svx/source/sdr/contact/objectcontactofpageview.cxx |5 +++--
 svx/source/svdraw/svdedxv.cxx  |5 +++--
 sw/source/core/view/viewsh.cxx |7 +++
 sw/source/uibase/config/viewopt.cxx|3 +--
 9 files changed, 16 insertions(+), 35 deletions(-)

New commits:
commit ba12e22f28150ec00d55e4fb99838710a3973e57
Author: Gabor Kelemen 
AuthorDate: Wed Dec 13 01:18:40 2023 +0100
Commit: Gabor Kelemen 
CommitDate: Sun Dec 24 12:14:58 2023 +0100

Drop some wrapper methods from SvtAccessibilityOptions

just use the wrapped officecfg methods instead of:
GetIsAllowAnimatedGraphics
GetIsAllowAnimatedText
GetIsAutomaticFontColor
IsSelectionInReadonly

Change-Id: I74de75fc9ff2f9a36ef376255e937bb373055587
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161236
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/include/svtools/accessibilityoptions.hxx 
b/include/svtools/accessibilityoptions.hxx
index cb4596228bee..6cebf4e005c9 100644
--- a/include/svtools/accessibilityoptions.hxx
+++ b/include/svtools/accessibilityoptions.hxx
@@ -35,11 +35,6 @@ public:
 virtual ~SvtAccessibilityOptions() override;
 
 // get & set config entries
-static bool GetIsAllowAnimatedGraphics();
-static bool GetIsAllowAnimatedText();
-static bool GetIsAutomaticFontColor();
-static bool IsSelectionInReadonly();
-
 static void SetVCLSettings();
 };
 
diff --git a/sc/source/ui/view/output.cxx b/sc/source/ui/view/output.cxx
index 7eeec493219c..be482d70d03e 100644
--- a/sc/source/ui/view/output.cxx
+++ b/sc/source/ui/view/output.cxx
@@ -26,11 +26,11 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -170,7 +170,7 @@ ScOutputData::ScOutputData( OutputDevice* pNewDev, 
ScOutputType eNewType,
 bPagebreakMode( false ),
 bSolidBackground( false ),
 mbUseStyleColor( false ),
-mbForceAutoColor( SvtAccessibilityOptions::GetIsAutomaticFontColor() ),
+mbForceAutoColor( 
officecfg::Office::Common::Accessibility::IsAutomaticFontColor::get() ),
 mbSyntaxMode( false ),
 aGridColor( COL_BLACK ),
 mbShowNullValues( true ),
diff --git a/sd/source/ui/annotations/annotationwindow.cxx 
b/sd/source/ui/annotations/annotationwindow.cxx
index 02495794aefa..99a58a085376 100644
--- a/sd/source/ui/annotations/annotationwindow.cxx
+++ b/sd/source/ui/annotations/annotationwindow.cxx
@@ -29,6 +29,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 
@@ -551,7 +552,7 @@ void AnnotationWindow::SetColor()
 maColorLight = AnnotationManagerImpl::GetColorLight( nAuthorIdx );
 }
 
-mpOutliner->ForceAutoColor( bHighContrast || 
SvtAccessibilityOptions::GetIsAutomaticFontColor() );
+mpOutliner->ForceAutoColor( bHighContrast || 
officecfg::Office::Common::Accessibility::IsAutomaticFontColor::get() );
 
 mxPopover->set_background(maColor);
 mxMenuButton->set_background(maColor);
diff --git a/sd/source/ui/view/outlview.cxx b/sd/source/ui/view/outlview.cxx
index d424f0117c27..087aa50ee86e 100644
--- a/sd/source/ui/view/outlview.cxx
+++ b/sd/source/ui/view/outlview.cxx
@@ -35,6 +35,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -154,7 +155,7 @@ OutlineView::~OutlineView()
 EEControlBits nCntrl = mrOutliner.GetControlWord();
 mrOutliner.SetUpdateLayout(false); // otherwise there will be drawn on 
SetControlWord
 mrOutliner.SetControlWord(nCntrl & ~EEControlBits::NOCOLORS);
-mrOutliner.ForceAutoColor( 
SvtAccessibilityOptions::GetIsAutomaticFontColor() );
+mrOutliner.ForceAutoColor( 
officecfg::Office::Common::Accessibility::IsAutomaticFontColor::get() );
 mrOutliner.Clear();
 }
 }
diff --git a/svtools/source/config/accessibilityoptions.cxx 
b/svtools/source/config/accessibilityoptions.cxx
index 460354cae319..877b0653335d 100644
--- a/svtools/source/config/accessibilityoptions.cxx
+++ b/svtools/source/config/accessibilityoptions.cxx
@@ -194,22 +194,6 @@ SvtAccessibilityOptions::~SvtAccessibilityOptions()
 sm_pSingleImplConfig = nullptr;
 }
 }
-bool SvtAccessibilityOptions::GetIsAllowAnimatedGraphics()
-{
-return 
officecfg::Office::Common::Accessibility::IsAllowAnimatedGraphics::get();
-}
-bool SvtAccessibilityOptions::GetIsAllowAnimatedText()
-{
-return 
officecfg::Office::Common::Accessibility::IsAllowAnimatedText::get();
-}
-bool SvtAccessibilityOptions::GetIsAutomaticFontColor()
-{
-return 

core.git: include/comphelper include/connectivity include/IwyuFilter_include.yaml include/sax include/sfx2 include/svtools include/xmloff

2023-12-24 Thread Gabor Kelemen (via logerrit)
 include/IwyuFilter_include.yaml  |   10 --
 include/comphelper/xmlencode.hxx |1 +
 include/connectivity/sdbcx/VView.hxx |1 -
 include/sax/fshelper.hxx |1 -
 include/sfx2/sfxbasemodel.hxx|1 -
 include/svtools/asynclink.hxx|1 -
 include/xmloff/xmlimp.hxx|2 +-
 7 files changed, 2 insertions(+), 15 deletions(-)

New commits:
commit 0b600862ae38c5405779f660226bee8e9cc6e3b6
Author: Gabor Kelemen 
AuthorDate: Sun Sep 17 14:44:25 2023 +0200
Commit: Gabor Kelemen 
CommitDate: Sun Dec 24 12:14:14 2023 +0100

tdf#146619 Recheck include/ with find-unneeded-includes --noexclude

to see if some exclusions became obsolete

Change-Id: Id88351f5448511b35994c58c6cb749784da3b45e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156993
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/include/IwyuFilter_include.yaml b/include/IwyuFilter_include.yaml
index f0fc1ef2a297..1a53a2de24bd 100644
--- a/include/IwyuFilter_include.yaml
+++ b/include/IwyuFilter_include.yaml
@@ -281,9 +281,6 @@ excludelist:
 - com/sun/star/io/XOutputStream.hpp
 - com/sun/star/io/XStream.hpp
 - com/sun/star/io/XTruncate.hpp
-include/sax/fshelper.hxx:
-# base class has to be a complete type
-- com/sun/star/xml/sax/XFastAttributeList.hpp
 include/sax/fastattribs.hxx:
 # base class has to be a complete type
 - com/sun/star/xml/sax/XFastAttributeList.hpp
@@ -424,13 +421,8 @@ excludelist:
 - com/sun/star/lang/XInitialization.hpp
 - com/sun/star/lang/XServiceInfo.hpp
 - com/sun/star/lang/XUnoTunnel.hpp
-- com/sun/star/xml/sax/XExtendedDocumentHandler.hpp
 - com/sun/star/xml/sax/XFastDocumentHandler.hpp
 - com/sun/star/xml/sax/XFastParser.hpp
-include/svtools/asynclink.hxx:
-# unique_ptr needs complete type
-- osl/mutex.hxx
-- vcl/idle.hxx
 include/svtools/cliplistener.hxx:
 # base class has to be a complete type
 - com/sun/star/datatransfer/clipboard/XClipboardListener.hpp
@@ -572,7 +564,6 @@ excludelist:
 # base class has to be a complete type
 - com/sun/star/container/XNamed.hpp
 - com/sun/star/lang/XServiceInfo.hpp
-- com/sun/star/sdbcx/XDataDescriptorFactory.hpp
 include/drawinglayer/primitive2d/baseprimitive2d.hxx:
 # base class has to be a complete type
 - com/sun/star/graphic/XPrimitive2D.hpp
@@ -618,7 +609,6 @@ excludelist:
 - com/sun/star/rdf/XDocumentMetadataAccess.hpp
 - com/sun/star/document/XDocumentRecovery.hpp
 - com/sun/star/document/XUndoManagerSupplier.hpp
-- com/sun/star/document/XEventBroadcaster.hpp
 - com/sun/star/document/XDocumentEventBroadcaster.hpp
 - com/sun/star/lang/XEventListener.hpp
 - com/sun/star/document/XEventsSupplier.hpp
diff --git a/include/comphelper/xmlencode.hxx b/include/comphelper/xmlencode.hxx
index 160de5c9cf42..9fbf18f8b711 100644
--- a/include/comphelper/xmlencode.hxx
+++ b/include/comphelper/xmlencode.hxx
@@ -20,6 +20,7 @@
 #pragma once
 
 #include 
+#include 
 
 namespace comphelper::string
 {
diff --git a/include/connectivity/sdbcx/VView.hxx 
b/include/connectivity/sdbcx/VView.hxx
index a1a68e337e5e..e441812a 100644
--- a/include/connectivity/sdbcx/VView.hxx
+++ b/include/connectivity/sdbcx/VView.hxx
@@ -20,7 +20,6 @@
 #ifndef INCLUDED_CONNECTIVITY_SDBCX_VVIEW_HXX
 #define INCLUDED_CONNECTIVITY_SDBCX_VVIEW_HXX
 
-#include 
 #include 
 #include 
 #include 
diff --git a/include/sax/fshelper.hxx b/include/sax/fshelper.hxx
index 74e2ed4e3254..5006a584d352 100644
--- a/include/sax/fshelper.hxx
+++ b/include/sax/fshelper.hxx
@@ -20,7 +20,6 @@
 #ifndef INCLUDED_SAX_FSHELPER_HXX
 #define INCLUDED_SAX_FSHELPER_HXX
 
-#include 
 #include 
 #include 
 #include 
diff --git a/include/sfx2/sfxbasemodel.hxx b/include/sfx2/sfxbasemodel.hxx
index de7661104451..9a07c16c0c23 100644
--- a/include/sfx2/sfxbasemodel.hxx
+++ b/include/sfx2/sfxbasemodel.hxx
@@ -32,7 +32,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
diff --git a/include/svtools/asynclink.hxx b/include/svtools/asynclink.hxx
index ae5139e3206b..ee45d0151d82 100644
--- a/include/svtools/asynclink.hxx
+++ b/include/svtools/asynclink.hxx
@@ -22,7 +22,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 
 class Timer;
diff --git a/include/xmloff/xmlimp.hxx b/include/xmloff/xmlimp.hxx
index b4616056c4ec..cac67404450b 100644
--- a/include/xmloff/xmlimp.hxx
+++ b/include/xmloff/xmlimp.hxx
@@ -29,8 +29,8 @@
 #include 
 #include 
 #include 
-#include 
 #include 
+#include 
 #include 
 #include 
 #include 


core.git: include/tools sal/qa sd/source sfx2/source solenv/clang-format svtools/CppunitTest_svtools_dialogs_test.mk svtools/Executable_langsupport.mk svtools/Library_svt.mk svtools/source sw/inc vcl/

2023-12-24 Thread Gabor Kelemen (via logerrit)
 include/tools/simd.hxx|   30 --
 sal/qa/OStringBuffer/rtl_String_Utils_Const.h |   45 ---
 sd/source/ui/sidebar/IDisposable.hxx  |   31 --
 sd/source/ui/sidebar/ISidebarReceiver.hxx |   31 --
 sfx2/source/inc/templatesearchviewitem.hxx|   28 --
 solenv/clang-format/excludelist   |4 
 svtools/CppunitTest_svtools_dialogs_test.mk   |1 
 svtools/Executable_langsupport.mk |1 
 svtools/Library_svt.mk|1 
 svtools/source/inc/unoiface.hxx   |   29 --
 sw/inc/swcommands.h   |   26 -
 vcl/inc/WidgetThemeLibraryTypes.hxx   |  235 --
 winaccessibility/source/UAccCOM/AccessibleKeyStroke.h |  152 ---
 13 files changed, 614 deletions(-)

New commits:
commit 9f2bcf335924039ac1b791a12fac8485bb7ba449
Author: Gabor Kelemen 
AuthorDate: Sat Dec 23 12:20:08 2023 +0100
Commit: Gabor Kelemen 
CommitDate: Sun Dec 24 11:50:41 2023 +0100

Remove unused headers found by bin/find-unusedheaders.sh

Change-Id: I859138dee575ef7fd76db28b619c673782914782
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161235
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/include/tools/simd.hxx b/include/tools/simd.hxx
deleted file mode 100644
index bdfdb8928271..
--- a/include/tools/simd.hxx
+++ /dev/null
@@ -1,30 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- */
-
-#ifndef INCLUDED_TOOLS_SIMD_HXX
-#define INCLUDED_TOOLS_SIMD_HXX
-
-namespace simd
-{
-template  inline bool isAligned(const T* pointer)
-{
-return 0 == (uintptr_t(pointer) % N);
-}
-
-template  inline T roundDown(T value, unsigned int multiple)
-{
-return value & ~(multiple - 1);
-}
-
-} // end namespace simd
-
-#endif // INCLUDED_TOOLS_SIMD_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sal/qa/OStringBuffer/rtl_String_Utils_Const.h 
b/sal/qa/OStringBuffer/rtl_String_Utils_Const.h
deleted file mode 100644
index fc258ead340f..
--- a/sal/qa/OStringBuffer/rtl_String_Utils_Const.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#ifndef INCLUDED_SAL_QA_OSTRINGBUFFER_RTL_STRING_UTILS_CONST_H
-#define INCLUDED_SAL_QA_OSTRINGBUFFER_RTL_STRING_UTILS_CONST_H
-
-#include 
-
-#ifdef __cplusplus
-extern "C"
-{
-#endif
-
-static const sal_Int32 kErrCompareAStringToUString = -2;
-static const sal_Int32 kErrCompareNAStringToUString= -3;
-static const sal_Int32 kErrCompareAStringToRTLUString  = -4;
-static const sal_Int32 kErrCompareNAStringToRTLUString = -5;
-static const sal_Int32 kErrAStringToByteStringCompare  = -6;
-static const sal_Int32 kErrAStringToByteStringNCompare = -7;
-static const sal_Int32 kErrCompareAStringToString  = -8;
-static const sal_Int32 kErrCompareNAStringToString = -9;
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif // INCLUDED_SAL_QA_OSTRINGBUFFER_RTL_STRING_UTILS_CONST_H
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sd/source/ui/sidebar/IDisposable.hxx 
b/sd/source/ui/sidebar/IDisposable.hxx
deleted file mode 100644
index e2c1afe2785d..
--- a/sd/source/ui/sidebar/IDisposable.hxx
+++ /dev/null
@@ -1,31 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) 

core.git: bin/find-unusedheaders.py bin/find-unusedheaders.sh include/framework

2023-12-24 Thread Gabor Kelemen (via logerrit)
 bin/find-unusedheaders.py|   48 
 bin/find-unusedheaders.sh|   88 +++
 include/framework/transactionmanager.hxx |2 
 3 files changed, 89 insertions(+), 49 deletions(-)

New commits:
commit f8cd2837493ebcab1ff485e00bfc9181779b49d8
Author: Gabor Kelemen 
AuthorDate: Sat Dec 23 09:17:48 2023 +0100
Commit: Gabor Kelemen 
CommitDate: Sun Dec 24 11:50:26 2023 +0100

Rewrite bin/find-unusedheaders.py

This script was broken, not only in the implementation
(it gives too many false positives in a suspiciously short, <1s time)
but in its approach as well: only considering stuff that is compiled
under Linux inherently leaves out other platform specific or experimental
stuff.

Rewrite it using another approach: grep for mentions of each
header in the modules or global ones in include/ everywhere.

Runtime of this script is about 15 minutes, seems to give only
a few relevant hits.

Change-Id: Ifb92f41f11ca9a2bf14eec617a469003becb78fa
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161234
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen 

diff --git a/bin/find-unusedheaders.py b/bin/find-unusedheaders.py
deleted file mode 100755
index 7ca9bea4be59..
--- a/bin/find-unusedheaders.py
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/usr/bin/env python3
-
-# This file is part of the LibreOffice project.
-#
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-"""
-Find dirs in:
-workdir/Dep/CObject
-workdir/Dep/CxxObject
-
-Concat these files and compare them with the output of
-`git ls-tree HEAD -r --name-only` and report files in the git ls-tree that 
aren't in the first.
-"""
-
-import os
-import subprocess
-
-
-def get_files_dict_recursively(directory):
-data = {}
-for root, _, files in os.walk(directory, topdown=False):
-for f in files:
-basename = os.path.splitext(f)[0]
-data[basename] = os.path.join(root, f)
-return data
-
-
-def main():
-data = {}
-for d in ('workdir/Dep/CObject', 'workdir/Dep/CxxObject'):
-tmp = get_files_dict_recursively(d)
-data.update(tmp)
-
-gitfiles = subprocess.check_output(['git', 'ls-tree', 'HEAD', '-r', 
'--name-only']).decode('utf-8').split('
')
-
-for f in gitfiles:
-ext = os.path.splitext(f)[1]
-if ext[1:] in ('c', 'cxx', 'h', 'hxx'):
-tmp = os.path.basename(f)
-tmp = os.path.splitext(tmp)[0]
-if tmp not in data:
-print(f)
-
-if __name__ == '__main__':
-main()
diff --git a/bin/find-unusedheaders.sh b/bin/find-unusedheaders.sh
new file mode 100755
index ..0a27696cc161
--- /dev/null
+++ b/bin/find-unusedheaders.sh
@@ -0,0 +1,88 @@
+#!/usr/bin/env bash
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+# Search for headers not included in any source files
+# Note: there are still exceptions (such as ODK) so results are not completely 
foolproof
+
+# Search in all subdirs, except for those not containing C/C++ headers
+for subdir in $(ls -d */ | grep -v \
+-e include/ `# Handled differently` \
+-e android \
+-e animations `# No headers here` \
+-e bean \
+-e bin/ `# Skip subdirs not containing C/C++ 
code ` \
+-e cpputools/ \
+-e distro-configs/ \
+-e docmodel/ `# No headers here` \
+-e eventattacher/ \
+-e external/ `# FIXME Should be handled 
differently, but it\'s such a mess` \
+-e extras/ \
+-e i18nlangtag/ \
+-e icon-themes/ \
+-e idlc/ \
+-e instsetoo_native/ \
+-e jurt/ \
+-e jvmaccess/ \
+-e librelogo/ \
+-e m4/ \
+-e msicreator/ \
+-e nlpsolver/ \
+-e offapi/ \
+-e officecfg/ \
+-e oovbaapi/ \
+-e osx/ \
+-e pch/ \
+-e postprocess/ \
+

core.git: drawinglayer/Library_drawinglayer.mk drawinglayer/source include/svtools svtools/source svx/source

2023-12-19 Thread Gabor Kelemen (via logerrit)
 drawinglayer/Library_drawinglayer.mk|4 ++
 drawinglayer/source/primitive2d/controlprimitive2d.cxx  |4 +-
 drawinglayer/source/primitive2d/sceneprimitive2d.cxx|3 +
 drawinglayer/source/processor2d/vclpixelprocessor2d.cxx |6 +--
 include/svtools/optionsdrawinglayer.hxx |6 ---
 svtools/source/config/optionsdrawinglayer.cxx   |   31 
 svx/source/sdr/overlay/overlayselection.cxx |3 +
 svx/source/svdraw/svddrgv.cxx   |6 +--
 8 files changed, 16 insertions(+), 47 deletions(-)

New commits:
commit dc8632a8b5c5dc4f58a4677d90f2f05133aa713d
Author: Gabor Kelemen 
AuthorDate: Mon Nov 13 02:36:26 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Tue Dec 19 20:52:37 2023 +0100

Drop some wrapper methods from SvtOptionsDrawinglayer

just use the wrapped officecfg methods instead of:
IsSolidDragCreate
IsRenderDecoratedTextDirect
IsRenderSimpleTextDirect
GetQuadratic3DRenderLimit
GetQuadraticFormControlRenderLimit
IsTransparentSelection

Change-Id: Ie0f3ec0f8fdbbf08facfff1a372c666c8a0c8979
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160654
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/drawinglayer/Library_drawinglayer.mk 
b/drawinglayer/Library_drawinglayer.mk
index 40abc8d0f0fa..bb36fc2847d9 100644
--- a/drawinglayer/Library_drawinglayer.mk
+++ b/drawinglayer/Library_drawinglayer.mk
@@ -57,6 +57,10 @@ $(eval $(call gb_Library_use_libraries,drawinglayer,\
 vcl \
 ))
 
+$(eval $(call gb_Library_use_custom_headers,drawinglayer,\
+officecfg/registry \
+))
+
 ifeq ($(OS),WNT)
 $(eval $(call gb_Library_use_system_win32_libs,drawinglayer,\
gdi32 \
diff --git a/drawinglayer/source/primitive2d/controlprimitive2d.cxx 
b/drawinglayer/source/primitive2d/controlprimitive2d.cxx
index c8448efa981f..fc6f69be521d 100644
--- a/drawinglayer/source/primitive2d/controlprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/controlprimitive2d.cxx
@@ -37,10 +37,10 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
+#include 
 
 using namespace com::sun::star;
 
@@ -99,7 +99,7 @@ namespace drawinglayer::primitive2d
 basegfx::B2DVector 
aDiscreteSize(rViewInformation.getObjectToViewTransformation() * aScale);
 
 // limit to a maximum square size, e.g. 300x150 pixels 
(45000)
-const double 
fDiscreteMax(SvtOptionsDrawinglayer::GetQuadraticFormControlRenderLimit());
+const double 
fDiscreteMax(officecfg::Office::Common::Drawinglayer::QuadraticFormControlRenderLimit::get());
 const double fDiscreteQuadratic(aDiscreteSize.getX() * 
aDiscreteSize.getY());
 const bool bScaleUsed(fDiscreteQuadratic > fDiscreteMax);
 double fFactor(1.0);
diff --git a/drawinglayer/source/primitive2d/sceneprimitive2d.cxx 
b/drawinglayer/source/primitive2d/sceneprimitive2d.cxx
index 64a18bbf4292..8a6943a83924 100644
--- a/drawinglayer/source/primitive2d/sceneprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/sceneprimitive2d.cxx
@@ -36,6 +36,7 @@
 #include 
 #include 
 #include 
+#include 
 
 using namespace com::sun::star;
 
@@ -243,7 +244,7 @@ namespace drawinglayer::primitive2d
 double fViewSizeX(aVisibleDiscreteRange.getWidth());
 double fViewSizeY(aVisibleDiscreteRange.getHeight());
 const double fViewVisibleArea(fViewSizeX * fViewSizeY);
-const double 
fMaximumVisibleArea(SvtOptionsDrawinglayer::GetQuadratic3DRenderLimit());
+const double 
fMaximumVisibleArea(officecfg::Office::Common::Drawinglayer::Quadratic3DRenderLimit::get());
 double fReduceFactor(1.0);
 
 if(fViewVisibleArea > fMaximumVisibleArea)
diff --git a/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx 
b/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx
index e71cda4a0bb6..bdea1cfa3198 100644
--- a/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx
+++ b/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx
@@ -63,7 +63,7 @@
 #include 
 #include 
 
-#include 
+#include 
 #include 
 
 using namespace com::sun::star;
@@ -399,7 +399,7 @@ void 
VclPixelProcessor2D::processTextSimplePortionPrimitive2D(
 const DrawModeFlags nOriginalDrawMode(mpOutputDevice->GetDrawMode());
 adaptTextToFillDrawMode();
 
-if (SvtOptionsDrawinglayer::IsRenderSimpleTextDirect())
+if (officecfg::Office::Common::Drawinglayer::RenderSimpleTextDirect::get())
 {
 RenderTextSimpleOrDecoratedPortionPrimitive2D(rCandidate);
 }
@@ -419,7 +419,7 @@ void 
VclPixelProcessor2D::processTextDecoratedPortionPrimitive2D(
 const DrawModeFlags nOriginalDrawMode(mpOutputDevice->GetDrawMode());
 adaptTextToFillDrawMode();
 
-if (SvtOptionsDrawinglayer::IsRenderDecoratedTextDirect())
+if 

core.git: cui/source include/svtools svtools/source sw/source

2023-12-15 Thread Gabor Kelemen (via logerrit)
 cui/source/tabpages/page.cxx  |   16 ++---
 include/svtools/optionsdrawinglayer.hxx   |8 --
 svtools/source/config/optionsdrawinglayer.cxx |   31 --
 sw/source/uibase/sidebar/PageFormatPanel.cxx  |6 ++---
 4 files changed, 11 insertions(+), 50 deletions(-)

New commits:
commit c498e2acd64688df9aa32bbcc820d8513a5373ea
Author: Gabor Kelemen 
AuthorDate: Mon Nov 13 01:02:08 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Sat Dec 16 01:30:20 2023 +0100

Drop some wrapper methods from SvtOptionsDrawinglayer

just use the wrapped officecfg methods instead of:
GetMaximumPaperWidth
GetMaximumPaperHeight
GetMaximumPaperLeftMargin
GetMaximumPaperRightMargin
GetMaximumPaperTopMargin
GetMaximumPaperBottomMargin

Change-Id: Id11782a306ca9118cc65607265be516ba9f0abda
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160653
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/cui/source/tabpages/page.cxx b/cui/source/tabpages/page.cxx
index d810a9471dce..0fec60690e9a 100644
--- a/cui/source/tabpages/page.cxx
+++ b/cui/source/tabpages/page.cxx
@@ -49,13 +49,13 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
 #include 
 #include 
 #include 
+#include 
 
 // static 
 
@@ -276,16 +276,16 @@ SvxPageDescPage::SvxPageDescPage(weld::Container* pPage, 
weld::DialogController*
 
 // #i4219# take Maximum now from configuration (1/100th cm)
 // was: 11900 -> 119 cm ;new value 3 meters -> 300 cm -> 3
-
m_xPaperWidthEdit->set_max(m_xPaperWidthEdit->normalize(SvtOptionsDrawinglayer::GetMaximumPaperWidth()),
 FieldUnit::CM);
-
m_xPaperHeightEdit->set_max(m_xPaperHeightEdit->normalize(SvtOptionsDrawinglayer::GetMaximumPaperHeight()),
 FieldUnit::CM);
+
m_xPaperWidthEdit->set_max(m_xPaperWidthEdit->normalize(officecfg::Office::Common::Drawinglayer::MaximumPaperWidth::get()),
 FieldUnit::CM);
+
m_xPaperHeightEdit->set_max(m_xPaperHeightEdit->normalize(officecfg::Office::Common::Drawinglayer::MaximumPaperHeight::get()),
 FieldUnit::CM);
 
 // #i4219# also for margins (1/100th cm). Was: , keeping.
-
m_xLeftMarginEdit->set_max(m_xLeftMarginEdit->normalize(SvtOptionsDrawinglayer::GetMaximumPaperLeftMargin()),
 FieldUnit::MM);
-
m_xRightMarginEdit->set_max(m_xRightMarginEdit->normalize(SvtOptionsDrawinglayer::GetMaximumPaperRightMargin()),
 FieldUnit::MM);
-
m_xTopMarginEdit->set_max(m_xTopMarginEdit->normalize(SvtOptionsDrawinglayer::GetMaximumPaperTopMargin()),
 FieldUnit::MM);
-
m_xBottomMarginEdit->set_max(m_xBottomMarginEdit->normalize(SvtOptionsDrawinglayer::GetMaximumPaperBottomMargin()),
 FieldUnit::MM);
+
m_xLeftMarginEdit->set_max(m_xLeftMarginEdit->normalize(officecfg::Office::Common::Drawinglayer::MaximumPaperLeftMargin::get()),
 FieldUnit::MM);
+
m_xRightMarginEdit->set_max(m_xRightMarginEdit->normalize(officecfg::Office::Common::Drawinglayer::MaximumPaperRightMargin::get()),
 FieldUnit::MM);
+
m_xTopMarginEdit->set_max(m_xTopMarginEdit->normalize(officecfg::Office::Common::Drawinglayer::MaximumPaperTopMargin::get()),
 FieldUnit::MM);
+
m_xBottomMarginEdit->set_max(m_xBottomMarginEdit->normalize(officecfg::Office::Common::Drawinglayer::MaximumPaperBottomMargin::get()),
 FieldUnit::MM);
 m_xGutterMarginEdit->set_max(
-
m_xGutterMarginEdit->normalize(SvtOptionsDrawinglayer::GetMaximumPaperLeftMargin()),
+
m_xGutterMarginEdit->normalize(officecfg::Office::Common::Drawinglayer::MaximumPaperLeftMargin::get()),
 FieldUnit::MM);
 
 // Get the i18n framework numberings and add them to the listbox.
diff --git a/include/svtools/optionsdrawinglayer.hxx 
b/include/svtools/optionsdrawinglayer.hxx
index ef7b96bbba58..a29d2899fef4 100644
--- a/include/svtools/optionsdrawinglayer.hxx
+++ b/include/svtools/optionsdrawinglayer.hxx
@@ -42,14 +42,6 @@ namespace SvtOptionsDrawinglayer
 SVT_DLLPUBLIC Color   GetStripeColorA();
 SVT_DLLPUBLIC Color   GetStripeColorB();
 
-// #i4219#
-SVT_DLLPUBLIC sal_uInt32  GetMaximumPaperWidth();
-SVT_DLLPUBLIC sal_uInt32  GetMaximumPaperHeight();
-SVT_DLLPUBLIC sal_uInt32  GetMaximumPaperLeftMargin();
-SVT_DLLPUBLIC sal_uInt32  GetMaximumPaperRightMargin();
-SVT_DLLPUBLIC sal_uInt32  GetMaximumPaperTopMargin();
-SVT_DLLPUBLIC sal_uInt32  GetMaximumPaperBottomMargin();
-
 // #i95644# helper to check if AA is allowed on this system. Currently, for 
WIN it's disabled
 // and OutDevSupportType::TransparentRect is checked (this  hits 
XRenderExtension, e.g.
 // currently for SunRay as long as not supported there)
diff --git a/svtools/source/config/optionsdrawinglayer.cxx 
b/svtools/source/config/optionsdrawinglayer.cxx
index f6beb66fa330..edb91e41fc34 100644
--- a/svtools/source/config/optionsdrawinglayer.cxx
+++ b/svtools/source/config/optionsdrawinglayer.cxx
@@ -43,37 +43,6 @@ 

core.git: bin/get-bugzilla-attachments-by-mimetype

2023-12-15 Thread Gabor Kelemen (via logerrit)
 bin/get-bugzilla-attachments-by-mimetype |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7f4841946962ffd0d457574721601dc2e6b372a1
Author: Gabor Kelemen 
AuthorDate: Fri Dec 15 14:31:23 2023 +0100
Commit: Thorsten Behrens 
CommitDate: Sat Dec 16 01:24:03 2023 +0100

get-bugzilla-attachments-by-mimetype: GNOME Bugzilla is dead

Comment it out from the script.
Gnumeric's new bugtracking is in gitlab:
https://gitlab.gnome.org/GNOME/gnumeric/-/issues

Change-Id: I53be9c368cf02f7a36991498ac2261e05327131a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160829
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/bin/get-bugzilla-attachments-by-mimetype 
b/bin/get-bugzilla-attachments-by-mimetype
index 6ce2a82d30eb..6b8e6cc1676c 100755
--- a/bin/get-bugzilla-attachments-by-mimetype
+++ b/bin/get-bugzilla-attachments-by-mimetype
@@ -348,7 +348,7 @@ rss_bugzillas = (
 #( 'abi', 'http://bugzilla.abisource.com/buglist.cgi' ), #added for abiword
 ( 'fdo', 'http://bugs.freedesktop.org/buglist.cgi' ),
 ( 'gentoo', 'http://bugs.gentoo.org/buglist.cgi' ),
-( 'gnome', 'http://bugzilla.gnome.org/buglist.cgi' ), # added for gnumeric
+#( 'gnome', 'http://bugzilla.gnome.org/buglist.cgi' ), # added for gnumeric
 ( 'kde', 'http://bugs.kde.org/buglist.cgi' ), # added for koffice/calligra
 ( 'mandriva', 'https://qa.mandriva.com/buglist.cgi' ),
 ( 'moz', 'https://bugzilla.mozilla.org/buglist.cgi' ),


  1   2   3   4   5   6   7   8   9   >