tdf#42949 Fix new IWYU warnings in directories s*
Except recently checked sc, sd, svx, sw Found with bin/find-unneeded-includes Only removal proposals are dealt with here. Change-Id: Ice1b86628e4f22a39f307b9c5fa567b6ab9d5acb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106917 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
This commit is contained in:
parent
9c94bae963
commit
107399d684
156 changed files with 132 additions and 271 deletions
|
@ -12,9 +12,7 @@
|
|||
#include <com/sun/star/io/Pipe.hpp>
|
||||
#include <com/sun/star/xml/sax/FastToken.hpp>
|
||||
#include <com/sun/star/xml/sax/SAXParseException.hpp>
|
||||
#include <com/sun/star/xml/sax/XFastTokenHandler.hpp>
|
||||
|
||||
#include <cppuhelper/implbase.hxx>
|
||||
#include <sax/fastparser.hxx>
|
||||
#include <sax/fastattribs.hxx>
|
||||
#include <test/bootstrapfixture.hxx>
|
||||
|
|
|
@ -28,8 +28,6 @@
|
|||
#include <com/sun/star/xml/sax/FastToken.hpp>
|
||||
#include <com/sun/star/xml/sax/SAXParseException.hpp>
|
||||
#include <com/sun/star/xml/sax/XFastContextHandler.hpp>
|
||||
#include <com/sun/star/xml/sax/XFastDocumentHandler.hpp>
|
||||
#include <com/sun/star/xml/sax/XFastTokenHandler.hpp>
|
||||
#include <cppuhelper/implbase.hxx>
|
||||
#include <cppuhelper/supportsservice.hxx>
|
||||
#include <cppuhelper/exc_hlp.hxx>
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
#include <algorithm>
|
||||
|
||||
#include <com/sun/star/xml/sax/SAXException.hpp>
|
||||
#include <com/sun/star/xml/sax/XFastTokenHandler.hpp>
|
||||
#include <sax/fastattribs.hxx>
|
||||
|
||||
using namespace ::com::sun::star::uno;
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
|
||||
#include <sax/fshelper.hxx>
|
||||
#include "fastserializer.hxx"
|
||||
#include <com/sun/star/xml/sax/XFastTokenHandler.hpp>
|
||||
|
||||
using namespace ::com::sun::star;
|
||||
using namespace ::com::sun::star::uno;
|
||||
|
|
|
@ -8,6 +8,10 @@ excludelist:
|
|||
- com/sun/star/sheet/addin/XAnalysis.hpp
|
||||
- com/sun/star/sheet/XAddIn.hpp
|
||||
- com/sun/star/sheet/XCompatibilityNames.hpp
|
||||
scaddins/source/analysis/analysisdefs.hxx:
|
||||
# Needed for macros
|
||||
- com/sun/star/lang/IllegalArgumentException.hpp
|
||||
- cmath
|
||||
scaddins/source/datefunc/datefunc.hxx:
|
||||
# Base class needs complete type
|
||||
- com/sun/star/lang/XServiceInfo.hpp
|
||||
|
@ -23,3 +27,12 @@ excludelist:
|
|||
- com/sun/star/sheet/addin/XPricingFunctions.hpp
|
||||
- com/sun/star/sheet/XAddIn.hpp
|
||||
- com/sun/star/sheet/XCompatibilityNames.hpp
|
||||
scaddins/source/pricing/black_scholes.cxx:
|
||||
# Needed for rtl::math::erfc
|
||||
- rtl/math.hxx
|
||||
scaddins/source/analysis/bessel.cxx:
|
||||
# Needed for rtl::math::sin / cos
|
||||
- rtl/math.hxx
|
||||
scaddins/source/pricing/pricing.cxx:
|
||||
# Needed for std::isfinite
|
||||
- cmath
|
||||
|
|
|
@ -20,12 +20,9 @@
|
|||
#include "analysisdefs.hxx"
|
||||
#include "analysis.hxx"
|
||||
#include "bessel.hxx"
|
||||
#include <cppuhelper/factory.hxx>
|
||||
#include <comphelper/processfactory.hxx>
|
||||
#include <comphelper/random.hxx>
|
||||
#include <cppuhelper/supportsservice.hxx>
|
||||
#include <cppuhelper/weak.hxx>
|
||||
#include <com/sun/star/lang/XSingleServiceFactory.hpp>
|
||||
#include <o3tl/any.hxx>
|
||||
#include <rtl/math.hxx>
|
||||
#include <sal/macros.h>
|
||||
|
|
|
@ -20,6 +20,9 @@
|
|||
#ifndef INCLUDED_SCADDINS_SOURCE_ANALYSIS_ANALYSISDEFS_HXX
|
||||
#define INCLUDED_SCADDINS_SOURCE_ANALYSIS_ANALYSISDEFS_HXX
|
||||
|
||||
#include <com/sun/star/lang/IllegalArgumentException.hpp>
|
||||
#include <cmath>
|
||||
|
||||
#define CHK_Freq ( nFreq != 1 && nFreq != 2 && nFreq != 4 )
|
||||
#define CHK_FINITE(d) if( !std::isfinite( d ) ) throw css::lang::IllegalArgumentException()
|
||||
#define RETURN_FINITE(d) if( !std::isfinite( d ) ) throw css::lang::IllegalArgumentException(); return d;
|
||||
|
|
|
@ -21,7 +21,6 @@
|
|||
#include "analysis.hxx"
|
||||
#include "analysishelper.hxx"
|
||||
#include <o3tl/temporary.hxx>
|
||||
#include <rtl/math.hxx>
|
||||
|
||||
using namespace sca::analysis;
|
||||
|
||||
|
|
|
@ -24,7 +24,6 @@
|
|||
#include <cppuhelper/factory.hxx>
|
||||
#include <cppuhelper/supportsservice.hxx>
|
||||
#include <cppuhelper/weak.hxx>
|
||||
#include <com/sun/star/lang/XSingleServiceFactory.hpp>
|
||||
#include <rtl/ustrbuf.hxx>
|
||||
#include <unotools/resmgr.hxx>
|
||||
#include <i18nlangtag/languagetag.hxx>
|
||||
|
|
|
@ -30,10 +30,8 @@
|
|||
#include <cppuhelper/factory.hxx>
|
||||
#include <cppuhelper/supportsservice.hxx>
|
||||
#include <cppuhelper/weak.hxx>
|
||||
#include <com/sun/star/lang/XSingleServiceFactory.hpp>
|
||||
#include <iostream>
|
||||
#include <algorithm>
|
||||
#include <rtl/math.hxx>
|
||||
#include <cmath>
|
||||
#include <unotools/resmgr.hxx>
|
||||
#include <i18nlangtag/languagetag.hxx>
|
||||
|
||||
|
|
|
@ -6,3 +6,6 @@ excludelist:
|
|||
- com/sun/star/sheet/XSolver.hpp
|
||||
- com/sun/star/sheet/XSolverDescription.hpp
|
||||
- com/sun/star/lang/XServiceInfo.hpp
|
||||
sccomp/source/solver/SolverComponent.cxx:
|
||||
# Actually used
|
||||
- com/sun/star/sheet/XSpreadsheetDocument.hpp
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
#include <com/sun/star/document/XEmbeddedScripts.hpp>
|
||||
#include <com/sun/star/uri/UriReferenceFactory.hpp>
|
||||
|
||||
#include <cppuhelper/implementationentry.hxx>
|
||||
#include <cppuhelper/supportsservice.hxx>
|
||||
#include <rtl/uri.hxx>
|
||||
#include <sal/log.hxx>
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
*/
|
||||
|
||||
|
||||
#include "DialogModelProvider.hxx"
|
||||
#include "dlgprov.hxx"
|
||||
#include "dlgevtatt.hxx"
|
||||
#include <com/sun/star/awt/UnoControlDialog.hpp>
|
||||
|
@ -41,7 +40,6 @@
|
|||
#include <com/sun/star/uri/XVndSunStarExpandUrl.hpp>
|
||||
#include <com/sun/star/util/theMacroExpander.hpp>
|
||||
|
||||
#include <cppuhelper/implementationentry.hxx>
|
||||
#include <cppuhelper/exc_hlp.hxx>
|
||||
#include <cppuhelper/supportsservice.hxx>
|
||||
#include <sfx2/app.hxx>
|
||||
|
|
|
@ -37,11 +37,8 @@
|
|||
#include <sfx2/objsh.hxx>
|
||||
#include <sfx2/frame.hxx>
|
||||
#include <sfx2/sfxdlg.hxx>
|
||||
#include <vcl/abstdlg.hxx>
|
||||
#include <tools/diagnose_ex.h>
|
||||
|
||||
#include <comphelper/processfactory.hxx>
|
||||
#include <cppuhelper/factory.hxx>
|
||||
#include <cppuhelper/exc_hlp.hxx>
|
||||
#include <cppuhelper/supportsservice.hxx>
|
||||
#include <framework/documentundoguard.hxx>
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
#include <cppuhelper/supportsservice.hxx>
|
||||
#include <unotools/mediadescriptor.hxx>
|
||||
|
||||
#include <com/sun/star/document/XEmbeddedScripts.hpp>
|
||||
#include <com/sun/star/frame/XModel.hpp>
|
||||
#include <com/sun/star/reflection/ProxyFactory.hpp>
|
||||
|
||||
|
@ -32,7 +33,6 @@
|
|||
#include <tools/diagnose_ex.h>
|
||||
|
||||
#include "BrowseNodeFactoryImpl.hxx"
|
||||
#include "MasterScriptProvider.hxx"
|
||||
#include <util/MiscUtils.hxx>
|
||||
|
||||
#include <vector>
|
||||
|
|
|
@ -21,9 +21,7 @@
|
|||
#include <comphelper/SetFlagContextHelper.hxx>
|
||||
#include <comphelper/documentinfo.hxx>
|
||||
|
||||
#include <cppuhelper/implementationentry.hxx>
|
||||
#include <cppuhelper/exc_hlp.hxx>
|
||||
#include <cppuhelper/factory.hxx>
|
||||
#include <cppuhelper/supportsservice.hxx>
|
||||
#include <tools/diagnose_ex.h>
|
||||
#include <tools/urlobj.hxx>
|
||||
|
@ -43,7 +41,6 @@
|
|||
#include <sal/log.hxx>
|
||||
|
||||
#include "MasterScriptProvider.hxx"
|
||||
#include "URIHelper.hxx"
|
||||
|
||||
using namespace ::com::sun::star;
|
||||
using namespace ::com::sun::star::uno;
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
|
||||
#include <cppuhelper/supportsservice.hxx>
|
||||
|
||||
#include "MasterScriptProvider.hxx"
|
||||
#include "MasterScriptProviderFactory.hxx"
|
||||
|
||||
using namespace ::com::sun::star;
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
#include <com/sun/star/embed/ElementModes.hpp>
|
||||
#include <com/sun/star/lang/NoSupportException.hpp>
|
||||
#include <com/sun/star/resource/MissingResourceException.hpp>
|
||||
#include <cppuhelper/implementationentry.hxx>
|
||||
#include <cppuhelper/supportsservice.hxx>
|
||||
#include <com/sun/star/beans/XPropertySet.hpp>
|
||||
#include <com/sun/star/container/ElementExistException.hpp>
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
#include <com/sun/star/frame/XDispatch.hpp>
|
||||
#include <com/sun/star/lang/XInitialization.hpp>
|
||||
#include <com/sun/star/lang/XServiceInfo.hpp>
|
||||
#include <com/sun/star/uno/XComponentContext.hpp>
|
||||
#include <rtl/ref.hxx>
|
||||
|
||||
namespace sdext::presenter {
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
#include <osl/conditn.hxx>
|
||||
|
||||
#include <algorithm>
|
||||
#include <iterator>
|
||||
#include <memory>
|
||||
#include <set>
|
||||
|
||||
|
|
|
@ -52,15 +52,6 @@ excludelist:
|
|||
- sfx2/docfile.hxx
|
||||
- ucbhelper/content.hxx
|
||||
- comphelper/processfactory.hxx
|
||||
sfx2/source/appl/appquit.cxx:
|
||||
# Needed for DELETEZ to avoid -Wdelete-incomplete warnings
|
||||
- childwinimpl.hxx
|
||||
- ctrlfactoryimpl.hxx
|
||||
- sfx2/doctempl.hxx
|
||||
- sfx2/fcontnr.hxx
|
||||
- sfx2/msgpool.hxx
|
||||
- sfx2/viewsh.hxx
|
||||
- shellimpl.hxx
|
||||
sfx2/source/appl/appmisc.cxx:
|
||||
# Needed for TypedWhichId macro
|
||||
- svl/stritem.hxx
|
||||
|
@ -85,9 +76,24 @@ excludelist:
|
|||
sfx2/source/bastyp/fltfnc.cxx:
|
||||
# Needed for UnoType to work
|
||||
- com/sun/star/task/XInteractionHandler.hpp
|
||||
sfx2/source/control/dispatch.cxx:
|
||||
# Needed for DENTERREGISTRATIONS DLEAVEREGISTRATIONS macros from sfx2/bindings.hxx in DBG_UTIL mode
|
||||
- rtl/strbuf.hxx
|
||||
sfx2/source/control/listview.cxx:
|
||||
# Needed for MOREBUTTON in sfx2/inc/bitmaps.hlst to not fail, until a bit of cleanup there.
|
||||
- tools/wintypes.hxx
|
||||
sfx2/source/control/sfxstatuslistener.cxx:
|
||||
# Actually used
|
||||
- com/sun/star/frame/XDispatchProvider.hpp
|
||||
sfx2/source/control/statcach.cxx:
|
||||
# Needed for template
|
||||
- com/sun/star/frame/XFrame.hpp
|
||||
sfx2/source/dialog/documentfontsdialog.cxx:
|
||||
# Needed for template
|
||||
- com/sun/star/frame/XModel.hpp
|
||||
sfx2/source/dialog/versdlg.cxx:
|
||||
# Needed for template
|
||||
- com/sun/star/frame/XModel.hpp
|
||||
sfx2/source/doc/docinf.cxx:
|
||||
# Actually used
|
||||
- com/sun/star/document/XDocumentProperties.hpp
|
||||
|
@ -100,6 +106,9 @@ excludelist:
|
|||
sfx2/source/doc/guisaveas.cxx:
|
||||
# Needed on WIN32
|
||||
- o3tl/char16_t2wchar_t.hxx
|
||||
sfx2/source/doc/iframe.cxx:
|
||||
# Needed for template
|
||||
- com/sun/star/awt/XWindowPeer.hpp
|
||||
sfx2/source/doc/objstor.cxx:
|
||||
# Actually used
|
||||
- com/sun/star/frame/XModel.hpp
|
||||
|
@ -115,6 +124,9 @@ excludelist:
|
|||
sfx2/source/doc/sfxbasemodel.cxx:
|
||||
# Don't propose hxx -> h change in URE libs
|
||||
- cppuhelper/interfacecontainer.hxx
|
||||
sfx2/source/doc/signaturestate.cxx:
|
||||
# Actually used
|
||||
- com/sun/star/security/DocumentSignatureInformation.hpp
|
||||
sfx2/source/inc/asyncfunc.hxx:
|
||||
# base class has to be a complete type
|
||||
- com/sun/star/lang/XUnoTunnel.hpp
|
||||
|
@ -126,6 +138,9 @@ excludelist:
|
|||
sfx2/source/sidebar/Panel.cxx:
|
||||
# Actually used
|
||||
- com/sun/star/ui/XUIElement.hpp
|
||||
sfx2/source/sidebar/ResourceManager.cxx:
|
||||
# Needed for template
|
||||
- com/sun/star/ui/XSidebarPanel.hpp
|
||||
sfx2/source/sidebar/SidebarToolBox.cxx:
|
||||
# Actually used
|
||||
- com/sun/star/frame/XFrame.hpp
|
||||
|
@ -135,6 +150,18 @@ excludelist:
|
|||
- com/sun/star/awt/XWindowPeer.hpp
|
||||
- com/sun/star/frame/XDispatch.hpp
|
||||
- com/sun/star/ui/ContextChangeEventObject.hpp
|
||||
sfx2/source/sidebar/SidebarDockingWindow.cxx:
|
||||
# Needed for json_parser_error
|
||||
- boost/property_tree/json_parser.hpp
|
||||
sfx2/source/sidebar/SidebarPanelBase.cxx:
|
||||
# Needed for template
|
||||
- com/sun/star/awt/XWindowPeer.hpp
|
||||
sfx2/source/view/ipclient.cxx:
|
||||
# Needed for template
|
||||
- com/sun/star/awt/XWindowPeer.hpp
|
||||
sfx2/source/view/sfxbasecontroller.cxx:
|
||||
# Needed for template
|
||||
- com/sun/star/awt/XWindowPeer.hpp
|
||||
sfx2/source/view/viewfrm2.cxx:
|
||||
# Needed for direct member access
|
||||
- com/sun/star/embed/VerbDescriptor.hpp
|
||||
|
@ -146,6 +173,8 @@ excludelist:
|
|||
# Actually used
|
||||
- com/sun/star/awt/XKeyHandler.hpp
|
||||
- com/sun/star/awt/XMouseClickHandler.hpp
|
||||
# Needed for template
|
||||
- com/sun/star/awt/XWindowPeer.hpp
|
||||
sfx2/source/view/viewsh.cxx:
|
||||
# Needed for TypedWhichId define
|
||||
- svl/eitem.hxx
|
||||
|
|
|
@ -24,7 +24,6 @@
|
|||
#include <sfx2/app.hxx>
|
||||
#include <sfx2/frame.hxx>
|
||||
#include <basic/sberrors.hxx>
|
||||
#include <tools/svlibrary.h>
|
||||
|
||||
#include <svl/svdde.hxx>
|
||||
#include <unotools/configmgr.hxx>
|
||||
|
@ -50,7 +49,6 @@
|
|||
#include <sfx2/stbitem.hxx>
|
||||
#include <sfx2/dockwin.hxx>
|
||||
#include <shellimpl.hxx>
|
||||
#include <comphelper/lok.hxx>
|
||||
|
||||
#include <svtools/helpopt.hxx>
|
||||
#include <unotools/viewoptions.hxx>
|
||||
|
|
|
@ -43,7 +43,6 @@
|
|||
#include <unotools/pathoptions.hxx>
|
||||
#include <svtools/miscopt.hxx>
|
||||
#include <svtools/imgdef.hxx>
|
||||
#include <vcl/toolbox.hxx>
|
||||
#include <sal/log.hxx>
|
||||
#include <vcl/idle.hxx>
|
||||
|
||||
|
|
|
@ -21,8 +21,7 @@
|
|||
#include <ucbhelper/content.hxx>
|
||||
|
||||
#include <vcl/canvastools.hxx>
|
||||
#include <vcl/svapp.hxx>
|
||||
#include <vcl/graphicfilter.hxx>
|
||||
#include <vcl/vectorgraphicdata.hxx>
|
||||
#include <com/sun/star/rendering/XIntegerReadOnlyBitmap.hpp>
|
||||
#include <com/sun/star/beans/PropertyValue.hpp>
|
||||
#include <com/sun/star/graphic/Primitive2DTools.hpp>
|
||||
|
|
|
@ -20,12 +20,10 @@
|
|||
#include <config_features.h>
|
||||
|
||||
#include <basic/sbstar.hxx>
|
||||
#include <tools/solar.h>
|
||||
#include <tools/debug.hxx>
|
||||
|
||||
#include <sfx2/app.hxx>
|
||||
#include <appdata.hxx>
|
||||
#include <sfx2/viewsh.hxx>
|
||||
#include <sfx2/dispatch.hxx>
|
||||
#include <sfx2/msgpool.hxx>
|
||||
#include <sfx2/fcontnr.hxx>
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
*/
|
||||
|
||||
#include <config_features.h>
|
||||
#include <com/sun/star/document/XEmbeddedScripts.hpp>
|
||||
#include <com/sun/star/drawing/ModuleDispatcher.hpp>
|
||||
#include <com/sun/star/frame/Desktop.hpp>
|
||||
#include <com/sun/star/frame/DispatchResultEvent.hpp>
|
||||
|
@ -28,8 +27,6 @@
|
|||
#include <com/sun/star/frame/XLayoutManager.hpp>
|
||||
#include <com/sun/star/frame/XSynchronousFrameLoader.hpp>
|
||||
#include <com/sun/star/sdbc/DriverManager.hpp>
|
||||
#include <com/sun/star/system/SystemShellExecute.hpp>
|
||||
#include <com/sun/star/system/SystemShellExecuteFlags.hpp>
|
||||
#include <com/sun/star/text/ModuleDispatcher.hpp>
|
||||
#include <com/sun/star/task/OfficeRestartManager.hpp>
|
||||
#include <com/sun/star/task/XInteractionHandler.hpp>
|
||||
|
@ -54,7 +51,6 @@
|
|||
#include <svl/visitem.hxx>
|
||||
|
||||
#include <unotools/configmgr.hxx>
|
||||
#include <tools/svlibrary.h>
|
||||
#include <tools/diagnose_ex.h>
|
||||
#include <vcl/svapp.hxx>
|
||||
#include <vcl/weld.hxx>
|
||||
|
@ -105,7 +101,6 @@
|
|||
#include <comphelper/types.hxx>
|
||||
#include <officecfg/Office/Common.hxx>
|
||||
#include <unotools/confignode.hxx>
|
||||
#include <officecfg/Setup.hxx>
|
||||
#include <memory>
|
||||
|
||||
#include <openuriexternally.hxx>
|
||||
|
@ -118,10 +113,7 @@ using namespace ::com::sun::star::uno;
|
|||
using namespace ::com::sun::star::frame;
|
||||
using namespace ::com::sun::star::container;
|
||||
using namespace ::com::sun::star::util;
|
||||
using namespace ::com::sun::star::script;
|
||||
using namespace ::com::sun::star::system;
|
||||
using namespace ::com::sun::star::lang;
|
||||
using namespace ::com::sun::star::document;
|
||||
using namespace ::com::sun::star::ui;
|
||||
|
||||
namespace
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
#include "newhelp.hxx"
|
||||
#include <tools/urlobj.hxx>
|
||||
#include <tools/debug.hxx>
|
||||
#include <limits.h>
|
||||
|
||||
using namespace ::com::sun::star::beans;
|
||||
using namespace ::com::sun::star::frame;
|
||||
|
|
|
@ -38,7 +38,6 @@
|
|||
#include <comphelper/processfactory.hxx>
|
||||
#include <comphelper/string.hxx>
|
||||
#include <toolkit/helper/vclunohelper.hxx>
|
||||
#include <com/sun/star/awt/PosSize.hpp>
|
||||
#include <com/sun/star/beans/PropertyValue.hpp>
|
||||
#include <com/sun/star/beans/XPropertySetInfo.hpp>
|
||||
#include <com/sun/star/container/XIndexAccess.hpp>
|
||||
|
@ -71,7 +70,6 @@
|
|||
#include <com/sun/star/view/XSelectionSupplier.hpp>
|
||||
#include <com/sun/star/view/XViewSettingsSupplier.hpp>
|
||||
#include <unotools/historyoptions.hxx>
|
||||
#include <svtools/menuoptions.hxx>
|
||||
#include <unotools/viewoptions.hxx>
|
||||
#include <tools/urlobj.hxx>
|
||||
#include <svtools/imagemgr.hxx>
|
||||
|
@ -80,7 +78,6 @@
|
|||
#include <vcl/event.hxx>
|
||||
#include <vcl/i18nhelp.hxx>
|
||||
#include <vcl/layout.hxx>
|
||||
#include <vcl/taskpanelist.hxx>
|
||||
#include <vcl/settings.hxx>
|
||||
#include <vcl/svapp.hxx>
|
||||
#include <vcl/unohelp.hxx>
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
#include <tools/datetime.hxx>
|
||||
#include <tools/urlobj.hxx>
|
||||
#include <svl/inethist.hxx>
|
||||
#include <vcl/gdimtf.hxx>
|
||||
#include <vcl/pngwrite.hxx>
|
||||
#include <vcl/svapp.hxx>
|
||||
#include <officecfg/Office/Common.hxx>
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
#include <vcl/svapp.hxx>
|
||||
#include <sfx2/charwin.hxx>
|
||||
#include <comphelper/dispatchcommand.hxx>
|
||||
#include <comphelper/processfactory.hxx>
|
||||
|
||||
#include <com/sun/star/beans/PropertyValue.hpp>
|
||||
|
||||
|
|
|
@ -7,22 +7,15 @@
|
|||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
#include <vcl/headbar.hxx>
|
||||
#include <sfx2/listview.hxx>
|
||||
|
||||
#include <sfx2/doctempl.hxx>
|
||||
#include <sfx2/sfxresid.hxx>
|
||||
#include <tools/urlobj.hxx>
|
||||
#include <vcl/svapp.hxx>
|
||||
|
||||
#include <vcl/commandevent.hxx>
|
||||
#include <vcl/event.hxx>
|
||||
|
||||
#include <sfx2/strings.hrc>
|
||||
#include <osl/file.hxx>
|
||||
#include <osl/time.h>
|
||||
#include <comphelper/fileurl.hxx>
|
||||
#include <string>
|
||||
|
||||
#include <svtools/svtresid.hxx>
|
||||
#include <svtools/strings.hrc>
|
||||
|
@ -30,6 +23,7 @@
|
|||
#include <unotools/collatorwrapper.hxx>
|
||||
#include <unotools/syslocale.hxx>
|
||||
#include <unotools/intlwrapper.hxx>
|
||||
#include <tools/wintypes.hxx>
|
||||
|
||||
#include <bitmaps.hlst>
|
||||
#include <rtl/math.hxx>
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
#include <sfx2/templatelocalview.hxx>
|
||||
#include <tools/urlobj.hxx>
|
||||
#include <unotools/historyoptions.hxx>
|
||||
#include <vcl/svapp.hxx>
|
||||
#include <vcl/event.hxx>
|
||||
#include <vcl/ptrstyle.hxx>
|
||||
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
#include <comphelper/string.hxx>
|
||||
#include <sfx2/inputdlg.hxx>
|
||||
#include <templateviewitem.hxx>
|
||||
#include <sfx2/doctempl.hxx>
|
||||
#include <sfx2/sfxresid.hxx>
|
||||
#include <templatecontaineritem.hxx>
|
||||
#include <sfx2/strings.hrc>
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
#include <sfx2/docfac.hxx>
|
||||
#include <tools/urlobj.hxx>
|
||||
#include <unotools/moduleoptions.hxx>
|
||||
#include <vcl/help.hxx>
|
||||
#include <vcl/svapp.hxx>
|
||||
#include <vcl/weld.hxx>
|
||||
#include <vcl/commandevent.hxx>
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
#include <unotools/ucbstreamhelper.hxx>
|
||||
#include <vcl/svapp.hxx>
|
||||
#include <vcl/settings.hxx>
|
||||
#include <vcl/commandevent.hxx>
|
||||
#include <vcl/event.hxx>
|
||||
#include <vcl/pngread.hxx>
|
||||
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
#include <drawinglayer/primitive2d/fillgraphicprimitive2d.hxx>
|
||||
#include <drawinglayer/primitive2d/polygonprimitive2d.hxx>
|
||||
#include <drawinglayer/primitive2d/PolyPolygonSelectionPrimitive2D.hxx>
|
||||
#include <drawinglayer/primitive2d/textdecoratedprimitive2d.hxx>
|
||||
#include <drawinglayer/primitive2d/textlayoutdevice.hxx>
|
||||
#include <drawinglayer/primitive2d/textprimitive2d.hxx>
|
||||
#include <drawinglayer/processor2d/baseprocessor2d.hxx>
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
#include <vcl/settings.hxx>
|
||||
#include <vcl/svapp.hxx>
|
||||
#include <vcl/syswin.hxx>
|
||||
#include <vcl/virdev.hxx>
|
||||
|
||||
#include <unotools/historyoptions.hxx>
|
||||
#include <unotools/moduleoptions.hxx>
|
||||
|
@ -51,8 +50,6 @@
|
|||
#include <com/sun/star/util/URLTransformer.hpp>
|
||||
#include <com/sun/star/task/InteractionHandler.hpp>
|
||||
|
||||
#include <officecfg/Office/Common.hxx>
|
||||
|
||||
using namespace ::com::sun::star;
|
||||
using namespace ::com::sun::star::beans;
|
||||
using namespace ::com::sun::star::frame;
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
#include <sfx2/childwin.hxx>
|
||||
#include <sfx2/viewsh.hxx>
|
||||
#include <workwin.hxx>
|
||||
#include <sfx2/lokhelper.hxx>
|
||||
#include <comphelper/lok.hxx>
|
||||
|
||||
using namespace ::com::sun::star::uno;
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
|
||||
#include <basegfx/polygon/b2dpolygon.hxx>
|
||||
#include <comphelper/dispatchcommand.hxx>
|
||||
#include <drawinglayer/primitive2d/polygonprimitive2d.hxx>
|
||||
#include <drawinglayer/primitive2d/PolyPolygonColorPrimitive2D.hxx>
|
||||
#include <drawinglayer/primitive2d/PolyPolygonStrokePrimitive2D.hxx>
|
||||
#include <drawinglayer/processor2d/baseprocessor2d.hxx>
|
||||
|
@ -22,7 +21,6 @@
|
|||
#include <sfx2/objface.hxx>
|
||||
#include <sfx2/sfxsids.hrc>
|
||||
#include <sfx2/viewfrm.hxx>
|
||||
#include <vcl/decoview.hxx>
|
||||
#include <vcl/image.hxx>
|
||||
#include <vcl/settings.hxx>
|
||||
#include <vcl/svapp.hxx>
|
||||
|
|
|
@ -25,12 +25,12 @@
|
|||
#include <sfx2/app.hxx>
|
||||
#include <sfx2/sfxresid.hxx>
|
||||
#include <sfx2/sfxdlg.hxx>
|
||||
#include <sfx2/viewsh.hxx>
|
||||
#include <unotools/viewoptions.hxx>
|
||||
#include <vcl/virdev.hxx>
|
||||
#include <sal/log.hxx>
|
||||
#include <tools/debug.hxx>
|
||||
#include <comphelper/lok.hxx>
|
||||
#include <sfx2/lokhelper.hxx>
|
||||
|
||||
#include <sfx2/strings.hrc>
|
||||
#include <helpids.h>
|
||||
|
|
|
@ -25,8 +25,6 @@
|
|||
#include <vcl/commandevent.hxx>
|
||||
#include <vcl/commandinfoprovider.hxx>
|
||||
#include <vcl/event.hxx>
|
||||
#include <vcl/help.hxx>
|
||||
#include <vcl/menu.hxx>
|
||||
#include <vcl/settings.hxx>
|
||||
#include <vcl/svapp.hxx>
|
||||
#include <vcl/weldutils.hxx>
|
||||
|
@ -35,8 +33,6 @@
|
|||
#include <svl/style.hxx>
|
||||
#include <comphelper/processfactory.hxx>
|
||||
#include <comphelper/sequenceashashmap.hxx>
|
||||
#include <unotools/intlwrapper.hxx>
|
||||
#include <unotools/collatorwrapper.hxx>
|
||||
#include <com/sun/star/beans/PropertyValue.hpp>
|
||||
#include <com/sun/star/frame/ModuleManager.hpp>
|
||||
#include <com/sun/star/frame/UnknownModuleException.hpp>
|
||||
|
@ -63,7 +59,6 @@
|
|||
#include <sfx2/docfac.hxx>
|
||||
#include <sfx2/module.hxx>
|
||||
#include <helpids.h>
|
||||
#include <bitmaps.hlst>
|
||||
#include <sfx2/viewfrm.hxx>
|
||||
|
||||
#include <comphelper/string.hxx>
|
||||
|
|
|
@ -33,7 +33,6 @@
|
|||
#include <vcl/svapp.hxx>
|
||||
#include <vcl/settings.hxx>
|
||||
#include <tools/datetime.hxx>
|
||||
#include <svtools/miscopt.hxx>
|
||||
|
||||
#include <versdlg.hxx>
|
||||
#include <sfx2/strings.hrc>
|
||||
|
|
|
@ -46,7 +46,6 @@
|
|||
#include <com/sun/star/document/XImporter.hpp>
|
||||
#include <com/sun/star/document/XExporter.hpp>
|
||||
#include <com/sun/star/document/XFilter.hpp>
|
||||
#include <com/sun/star/xml/sax/Parser.hpp>
|
||||
#include <com/sun/star/xml/sax/Writer.hpp>
|
||||
#include <com/sun/star/xml/sax/XFastParser.hpp>
|
||||
#include <com/sun/star/xml/dom/DOMException.hpp>
|
||||
|
|
|
@ -17,9 +17,6 @@
|
|||
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
||||
*/
|
||||
|
||||
#include <com/sun/star/container/XChild.hpp>
|
||||
#include <com/sun/star/lang/XUnoTunnel.hpp>
|
||||
|
||||
#include <sfx2/objsh.hxx>
|
||||
#include <sfx2/app.hxx>
|
||||
#include <objshimp.hxx>
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
|
||||
#include <sfx2/objsh.hxx>
|
||||
#include <sfx2/objitem.hxx>
|
||||
#include <com/sun/star/lang/XUnoTunnel.hpp>
|
||||
#include <com/sun/star/frame/XModel.hpp>
|
||||
|
||||
|
||||
|
|
|
@ -85,7 +85,6 @@
|
|||
#include <sfx2/bindings.hxx>
|
||||
#include <sfx2/sfxresid.hxx>
|
||||
#include <sfx2/docfile.hxx>
|
||||
#include <sfx2/docfilt.hxx>
|
||||
#include <sfx2/objsh.hxx>
|
||||
#include <objshimp.hxx>
|
||||
#include <sfx2/event.hxx>
|
||||
|
|
|
@ -34,7 +34,6 @@
|
|||
#include <com/sun/star/task/XStatusIndicatorFactory.hpp>
|
||||
#include <comphelper/processfactory.hxx>
|
||||
#include <comphelper/servicehelper.hxx>
|
||||
#include <com/sun/star/security/CertificateValidity.hpp>
|
||||
#include <com/sun/star/drawing/XDrawView.hpp>
|
||||
|
||||
#include <com/sun/star/security/DocumentSignatureInformation.hpp>
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
*/
|
||||
|
||||
#include <com/sun/star/frame/DoubleInitializationException.hpp>
|
||||
#include <com/sun/star/lang/XUnoTunnel.hpp>
|
||||
#include <com/sun/star/document/XFilter.hpp>
|
||||
#include <com/sun/star/lang/XServiceInfo.hpp>
|
||||
#include <com/sun/star/lang/IllegalArgumentException.hpp>
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
#include <com/sun/star/ucb/NameClash.hpp>
|
||||
#include <com/sun/star/ucb/ContentCreationException.hpp>
|
||||
#include <com/sun/star/ucb/CommandAbortedException.hpp>
|
||||
#include <com/sun/star/lang/XUnoTunnel.hpp>
|
||||
#include <com/sun/star/frame/XModel.hpp>
|
||||
#include <com/sun/star/view/DuplexMode.hpp>
|
||||
#include <comphelper/processfactory.hxx>
|
||||
|
|
|
@ -19,16 +19,10 @@
|
|||
|
||||
#include <sfx2/sfxmodelfactory.hxx>
|
||||
|
||||
#include <com/sun/star/lang/XServiceInfo.hpp>
|
||||
#include <com/sun/star/beans/NamedValue.hpp>
|
||||
#include <com/sun/star/lang/XInitialization.hpp>
|
||||
#include <com/sun/star/lang/XSingleServiceFactory.hpp>
|
||||
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
||||
#include <com/sun/star/uno/XComponentContext.hpp>
|
||||
|
||||
#include <comphelper/namedvaluecollection.hxx>
|
||||
#include <cppuhelper/implbase.hxx>
|
||||
#include <cppuhelper/supportsservice.hxx>
|
||||
|
||||
#include <osl/diagnose.h>
|
||||
|
||||
|
@ -43,10 +37,7 @@ namespace sfx2
|
|||
using ::com::sun::star::uno::XInterface;
|
||||
using ::com::sun::star::uno::UNO_QUERY;
|
||||
using ::com::sun::star::uno::Any;
|
||||
using ::com::sun::star::lang::XMultiServiceFactory;
|
||||
using ::com::sun::star::uno::Sequence;
|
||||
using ::com::sun::star::lang::XSingleServiceFactory;
|
||||
using ::com::sun::star::lang::XServiceInfo;
|
||||
using ::com::sun::star::beans::NamedValue;
|
||||
using ::com::sun::star::beans::PropertyValue;
|
||||
using ::com::sun::star::lang::XInitialization;
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
#include <templatesearchviewitem.hxx>
|
||||
|
||||
#include <comphelper/processfactory.hxx>
|
||||
#include <comphelper/propertysequence.hxx>
|
||||
#include <comphelper/string.hxx>
|
||||
#include <comphelper/storagehelper.hxx>
|
||||
#include <sfx2/app.hxx>
|
||||
|
@ -30,7 +29,6 @@
|
|||
#include <sfx2/thumbnailviewitem.hxx>
|
||||
#include <sot/storage.hxx>
|
||||
#include <svtools/imagemgr.hxx>
|
||||
#include <svtools/langhelp.hxx>
|
||||
#include <tools/urlobj.hxx>
|
||||
#include <unotools/moduleoptions.hxx>
|
||||
#include <unotools/pathoptions.hxx>
|
||||
|
@ -41,24 +39,19 @@
|
|||
|
||||
#include <com/sun/star/beans/NamedValue.hpp>
|
||||
#include <com/sun/star/beans/PropertyValue.hpp>
|
||||
#include <com/sun/star/configuration/theDefaultProvider.hpp>
|
||||
#include <com/sun/star/document/MacroExecMode.hpp>
|
||||
#include <com/sun/star/document/UpdateDocMode.hpp>
|
||||
#include <com/sun/star/embed/XStorage.hpp>
|
||||
#include <com/sun/star/embed/ElementModes.hpp>
|
||||
#include <com/sun/star/frame/Desktop.hpp>
|
||||
#include <com/sun/star/frame/XStorable.hpp>
|
||||
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
||||
#include <com/sun/star/ui/dialogs/ExecutableDialogResults.hpp>
|
||||
#include <com/sun/star/ui/dialogs/TemplateDescription.hpp>
|
||||
#include <com/sun/star/ui/dialogs/FolderPicker.hpp>
|
||||
#include <com/sun/star/system/SystemShellExecute.hpp>
|
||||
#include <com/sun/star/system/SystemShellExecuteFlags.hpp>
|
||||
#include <com/sun/star/task/InteractionHandler.hpp>
|
||||
#include <comphelper/dispatchcommand.hxx>
|
||||
|
||||
#include <sfx2/strings.hrc>
|
||||
#include <bitmaps.hlst>
|
||||
|
||||
const char TM_SETTING_MANAGER[] = "TemplateManager";
|
||||
const char TM_SETTING_LASTFOLDER[] = "LastFolder";
|
||||
|
@ -1499,4 +1492,4 @@ IMPL_LINK_NOARG(SfxTemplateSelectionDlg, OkClickHdl, weld::Button&, void)
|
|||
m_xDialog->response(RET_OK);
|
||||
}
|
||||
|
||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
|
||||
#include <sal/config.h>
|
||||
|
||||
#include <tools/solar.h>
|
||||
#include <svl/itempool.hxx>
|
||||
#include <svl/poolitem.hxx>
|
||||
#include <svl/stritem.hxx>
|
||||
|
|
|
@ -18,8 +18,6 @@
|
|||
#include <comphelper/processfactory.hxx>
|
||||
#include <comphelper/lok.hxx>
|
||||
#include <com/sun/star/frame/UnknownModuleException.hpp>
|
||||
#include <com/sun/star/ui/ContextChangeEventMultiplexer.hpp>
|
||||
#include <com/sun/star/ui/XContextChangeEventMultiplexer.hpp>
|
||||
#include <com/sun/star/frame/XLayoutManager.hpp>
|
||||
#include <officecfg/Office/UI/ToolbarMode.hxx>
|
||||
#include <com/sun/star/frame/XModuleManager.hpp>
|
||||
|
|
|
@ -19,15 +19,11 @@
|
|||
|
||||
#include <com/sun/star/beans/PropertyValue.hpp>
|
||||
|
||||
#include <com/sun/star/document/XEmbeddedScripts.hpp>
|
||||
#include <com/sun/star/document/XScriptInvocationContext.hpp>
|
||||
#include <com/sun/star/util/URL.hpp>
|
||||
#include <com/sun/star/frame/Desktop.hpp>
|
||||
#include <com/sun/star/util/URLTransformer.hpp>
|
||||
#include <com/sun/star/util/XURLTransformer.hpp>
|
||||
#include <com/sun/star/uno/XInterface.hpp>
|
||||
#include <tools/urlobj.hxx>
|
||||
#include <tools/diagnose_ex.h>
|
||||
#include <svl/macitem.hxx>
|
||||
#include <sfx2/objsh.hxx>
|
||||
#include <sfx2/evntconf.hxx>
|
||||
|
|
|
@ -21,8 +21,6 @@
|
|||
|
||||
#include <sfx2/bindings.hxx>
|
||||
|
||||
#include <com/sun/star/lang/XComponent.hpp>
|
||||
|
||||
using namespace css;
|
||||
using namespace css::uno;
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include <sidebar/PanelTitleBar.hxx>
|
||||
#include <sfx2/sidebar/Panel.hxx>
|
||||
#include <sfx2/sidebar/Theme.hxx>
|
||||
#include <sfx2/lokhelper.hxx>
|
||||
#include <sfx2/viewsh.hxx>
|
||||
|
||||
#include <vcl/event.hxx>
|
||||
#include <comphelper/lok.hxx>
|
||||
|
|
|
@ -23,13 +23,7 @@
|
|||
#include <sfx2/sidebar/Panel.hxx>
|
||||
#include <sfx2/sidebar/Theme.hxx>
|
||||
#include <sidebar/ControllerFactory.hxx>
|
||||
#include <sidebar/Tools.hxx>
|
||||
#include <vcl/event.hxx>
|
||||
#include <vcl/image.hxx>
|
||||
#include <toolkit/helper/vclunohelper.hxx>
|
||||
#include <tools/diagnose_ex.h>
|
||||
|
||||
#include <com/sun/star/frame/XDispatch.hpp>
|
||||
|
||||
using namespace css;
|
||||
using namespace css::uno;
|
||||
|
|
|
@ -29,11 +29,9 @@
|
|||
#include <sidebar/Tools.hxx>
|
||||
#include <sfx2/sidebar/SidebarDockingWindow.hxx>
|
||||
#include <sfx2/sidebar/Context.hxx>
|
||||
#include <sfx2/viewsh.hxx>
|
||||
|
||||
|
||||
#include <sfx2/lokhelper.hxx>
|
||||
#include <sfx2/sfxresid.hxx>
|
||||
#include <sfx2/strings.hrc>
|
||||
#include <framework/ContextChangeEventMultiplexerTunnel.hxx>
|
||||
#include <vcl/floatwin.hxx>
|
||||
#include <vcl/fixed.hxx>
|
||||
|
|
|
@ -23,10 +23,10 @@
|
|||
|
||||
#include <comphelper/dispatchcommand.hxx>
|
||||
#include <comphelper/processfactory.hxx>
|
||||
#include <sfx2/lokhelper.hxx>
|
||||
#include <sfx2/bindings.hxx>
|
||||
#include <sfx2/dispatch.hxx>
|
||||
#include <sfx2/viewfrm.hxx>
|
||||
#include <sfx2/viewsh.hxx>
|
||||
#include <svtools/acceleratorexecute.hxx>
|
||||
#include <tools/gen.hxx>
|
||||
#include <tools/json_writer.hxx>
|
||||
|
|
|
@ -23,16 +23,12 @@
|
|||
#include <sidebar/Tools.hxx>
|
||||
#include <sfx2/sidebar/FocusManager.hxx>
|
||||
#include <sfx2/sidebar/SidebarController.hxx>
|
||||
#include <sfx2/strings.hrc>
|
||||
|
||||
#include <sfx2/sfxresid.hxx>
|
||||
|
||||
#include <comphelper/processfactory.hxx>
|
||||
#include <o3tl/safeint.hxx>
|
||||
#include <vcl/commandevent.hxx>
|
||||
#include <vcl/event.hxx>
|
||||
#include <vcl/svapp.hxx>
|
||||
#include <tools/svborder.hxx>
|
||||
#include <svtools/acceleratorexecute.hxx>
|
||||
|
||||
using namespace css;
|
||||
|
|
|
@ -25,8 +25,6 @@
|
|||
#include <vcl/settings.hxx>
|
||||
#include <tools/diagnose_ex.h>
|
||||
|
||||
#include <com/sun/star/awt/Rectangle.hpp>
|
||||
|
||||
using namespace css;
|
||||
using namespace css::uno;
|
||||
|
||||
|
|
|
@ -24,7 +24,6 @@
|
|||
#include <comphelper/namedvaluecollection.hxx>
|
||||
#include <comphelper/processfactory.hxx>
|
||||
#include <vcl/commandinfoprovider.hxx>
|
||||
#include <vcl/gradient.hxx>
|
||||
|
||||
#include <com/sun/star/frame/XDispatchProvider.hpp>
|
||||
#include <com/sun/star/frame/XFrame.hpp>
|
||||
|
|
|
@ -42,10 +42,7 @@
|
|||
#include <vcl/svapp.hxx>
|
||||
#include <vcl/toolbox.hxx>
|
||||
|
||||
#include <svtools/framestatuslistener.hxx>
|
||||
#include <comphelper/processfactory.hxx>
|
||||
#include <vcl/taskpanelist.hxx>
|
||||
#include <vcl/event.hxx>
|
||||
#include <toolkit/helper/vclunohelper.hxx>
|
||||
|
||||
#include <vcl/InterimItemWindow.hxx>
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
#include <com/sun/star/util/XCloseable.hpp>
|
||||
#include <com/sun/star/util/CloseVetoException.hpp>
|
||||
#include <com/sun/star/lang/DisposedException.hpp>
|
||||
#include <com/sun/star/lang/XUnoTunnel.hpp>
|
||||
#include <com/sun/star/container/XChild.hpp>
|
||||
#include <com/sun/star/embed/XEmbeddedObject.hpp>
|
||||
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
#include <sfx2/lokhelper.hxx>
|
||||
#include <toolkit/helper/vclunohelper.hxx>
|
||||
#include <tools/fract.hxx>
|
||||
#include <tools/mapunit.hxx>
|
||||
#include <tools/UnitConversion.hxx>
|
||||
#include <vcl/virdev.hxx>
|
||||
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
|
||||
#include <comphelper/processfactory.hxx>
|
||||
#include <rtl/strbuf.hxx>
|
||||
#include <rtl/ustrbuf.hxx>
|
||||
#include <vcl/lok.hxx>
|
||||
#include <vcl/svapp.hxx>
|
||||
#include <vcl/commandevent.hxx>
|
||||
|
|
|
@ -32,7 +32,6 @@
|
|||
#include <com/sun/star/frame/XLoadable.hpp>
|
||||
#include <com/sun/star/frame/XLayoutManager.hpp>
|
||||
#include <com/sun/star/frame/XComponentLoader.hpp>
|
||||
#include <com/sun/star/drawing/XShapes.hpp>
|
||||
#include <officecfg/Office/Common.hxx>
|
||||
#include <officecfg/Setup.hxx>
|
||||
#include <toolkit/helper/vclunohelper.hxx>
|
||||
|
|
|
@ -54,7 +54,6 @@
|
|||
|
||||
#include <framework/actiontriggerhelper.hxx>
|
||||
#include <comphelper/lok.hxx>
|
||||
#include <comphelper/namedvaluecollection.hxx>
|
||||
#include <comphelper/processfactory.hxx>
|
||||
#include <comphelper/sequenceashashmap.hxx>
|
||||
#include <toolkit/helper/vclunohelper.hxx>
|
||||
|
@ -62,7 +61,6 @@
|
|||
#include <vcl/commandinfoprovider.hxx>
|
||||
#include <LibreOfficeKit/LibreOfficeKitEnums.h>
|
||||
|
||||
#include <officecfg/Office/Common.hxx>
|
||||
#include <officecfg/Setup.hxx>
|
||||
#include <sfx2/app.hxx>
|
||||
#include <sfx2/flatpak.hxx>
|
||||
|
|
|
@ -36,9 +36,7 @@
|
|||
#include <com/sun/star/uno/Sequence.hxx>
|
||||
#include <com/sun/star/uno/XComponentContext.hpp>
|
||||
#include <com/sun/star/uno/XCurrentContext.hpp>
|
||||
#include <cppuhelper/factory.hxx>
|
||||
#include <cppuhelper/implbase.hxx>
|
||||
#include <cppuhelper/implementationentry.hxx>
|
||||
#include <cppuhelper/weak.hxx>
|
||||
#include <osl/file.hxx>
|
||||
#include <osl/security.hxx>
|
||||
|
|
|
@ -35,9 +35,7 @@
|
|||
#include <com/sun/star/uno/Sequence.hxx>
|
||||
#include <com/sun/star/uno/XComponentContext.hpp>
|
||||
#include <com/sun/star/uno/XCurrentContext.hpp>
|
||||
#include <cppuhelper/factory.hxx>
|
||||
#include <cppuhelper/implbase.hxx>
|
||||
#include <cppuhelper/implementationentry.hxx>
|
||||
#include <cppuhelper/weak.hxx>
|
||||
#include <rtl/ustring.hxx>
|
||||
#include <sal/types.h>
|
||||
|
|
|
@ -24,7 +24,6 @@
|
|||
#include <com/sun/star/beans/XPropertySet.hpp>
|
||||
#include <com/sun/star/lang/XServiceInfo.hpp>
|
||||
#include <cppuhelper/implbase.hxx>
|
||||
#include <rtl/string.hxx>
|
||||
|
||||
namespace uno = css::uno ;
|
||||
namespace lang = css::lang ;
|
||||
|
|
|
@ -14,6 +14,9 @@ excludelist:
|
|||
- config_lgpl.h
|
||||
# Wrapper for external lib
|
||||
- glm/gtc/type_ptr.hpp
|
||||
slideshow/source/engine/box2dtools.cxx:
|
||||
# Macro BOX2D_HEADER is resolved to this
|
||||
- Box2D/Box2D.h
|
||||
slideshow/source/engine/opengl/Operation.cxx:
|
||||
# Wrapper for external lib
|
||||
- glm/gtc/matrix_transform.hpp
|
||||
|
@ -22,6 +25,9 @@ excludelist:
|
|||
# Wrapper for external lib
|
||||
- glm/gtc/matrix_transform.hpp
|
||||
- glm/gtc/type_ptr.hpp
|
||||
slideshow/source/engine/rehearsetimingsactivity.cxx:
|
||||
# Needed for template
|
||||
- com/sun/star/rendering/XCanvas.hpp
|
||||
slideshow/source/engine/smilfunctionparser.cxx:
|
||||
# Boost wrapper is needed
|
||||
- boost/spirit/include/classic_core.hpp
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
|
||||
#include "animationphysicsnode.hxx"
|
||||
#include <animationfactory.hxx>
|
||||
#include <o3tl/any.hxx>
|
||||
|
||||
constexpr double fDefaultStartVelocityX(0.0);
|
||||
constexpr double fDefaultStartVelocityY(0.0);
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
#pragma once
|
||||
|
||||
#include "animationbasenode.hxx"
|
||||
#include <com/sun/star/animations/XAnimateMotion.hpp>
|
||||
#include <com/sun/star/animations/XAnimatePhysics.hpp>
|
||||
|
||||
namespace slideshow
|
||||
|
|
|
@ -16,11 +16,10 @@
|
|||
#include <basegfx/polygon/b2dpolypolygontools.hxx>
|
||||
#include <basegfx/polygon/b2dpolygontools.hxx>
|
||||
#include <basegfx/polygon/b2dpolygontriangulator.hxx>
|
||||
#include <com/sun/star/drawing/PolyPolygonBezierCoords.hpp>
|
||||
|
||||
#include <svx/svdobj.hxx>
|
||||
#include <svx/svdoashp.hxx>
|
||||
#include <svx/svdogrp.hxx>
|
||||
#include <svx/svdpage.hxx>
|
||||
|
||||
#include <svx/unoapi.hxx>
|
||||
|
||||
|
|
|
@ -26,8 +26,6 @@
|
|||
#include <com/sun/star/awt/FontWeight.hpp>
|
||||
#include <com/sun/star/animations/AnimationAdditiveMode.hpp>
|
||||
|
||||
#include <rtl/math.hxx>
|
||||
|
||||
|
||||
using namespace ::com::sun::star;
|
||||
|
||||
|
|
|
@ -23,6 +23,8 @@
|
|||
#include "viewappletshape.hxx"
|
||||
#include <tools.hxx>
|
||||
|
||||
#include <osl/diagnose.h>
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#include <com/sun/star/beans/XPropertySet.hpp>
|
||||
|
||||
#include <sal/log.hxx>
|
||||
#include <osl/diagnose.h>
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
|
||||
|
||||
#include <com/sun/star/drawing/XShape.hpp>
|
||||
#include <osl/diagnose.h>
|
||||
|
||||
#include "mediashape.hxx"
|
||||
#include "viewmediashape.hxx"
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
#include "shape.hxx"
|
||||
#include "shapeattributelayer.hxx"
|
||||
#include "attributemap.hxx"
|
||||
#include <map>
|
||||
#include <unordered_map>
|
||||
#include <queue>
|
||||
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
#include "expressionnode.hxx"
|
||||
|
||||
#include <basegfx/range/b2drectangle.hxx>
|
||||
#include <rtl/ustring.hxx>
|
||||
|
||||
#include <memory>
|
||||
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
#include <com/sun/star/container/XEnumerationAccess.hpp>
|
||||
#include <com/sun/star/container/XEnumeration.hpp>
|
||||
#include <comphelper/random.hxx>
|
||||
#include <osl/diagnose.h>
|
||||
#include <sal/log.hxx>
|
||||
|
||||
#include <cppcanvas/color.hxx>
|
||||
|
|
|
@ -4,6 +4,12 @@ excludelist:
|
|||
starmath/inc/smmod.hxx:
|
||||
# Needed for define
|
||||
- sfx2/app.hxx
|
||||
starmath/qa/extras/mmlexport-test.cxx:
|
||||
# Required in C++20 mode.
|
||||
- o3tl/cppunittraitshelper.hxx
|
||||
starmath/qa/cppunit/test_node.cxx:
|
||||
# Required in C++20 mode.
|
||||
- o3tl/cppunittraitshelper.hxx
|
||||
starmath/source/accessibility.hxx:
|
||||
# Base class needs complete type
|
||||
- com/sun/star/accessibility/XAccessible.hpp
|
||||
|
@ -19,6 +25,12 @@ excludelist:
|
|||
starmath/source/accessibility.cxx:
|
||||
# Needed for implicit dtor
|
||||
- editeng/editobj.hxx
|
||||
starmath/source/node.cxx:
|
||||
# Actually used
|
||||
- vector
|
||||
starmath/source/mathmlexport.cxx:
|
||||
# Needed for rtl::math::round
|
||||
- rtl/math.hxx
|
||||
starmath/source/smdll.cxx:
|
||||
# Needed to inherit linker visibility
|
||||
- smdll.hxx
|
||||
|
@ -32,3 +44,5 @@ excludelist:
|
|||
starmath/source/unodoc.cxx:
|
||||
# Avoid loplugin:unreffun error
|
||||
- register.hxx
|
||||
# Needed for template
|
||||
- com/sun/star/frame/XModel.hpp
|
||||
|
|
|
@ -21,7 +21,6 @@
|
|||
|
||||
#include <com/sun/star/accessibility/XAccessible.hpp>
|
||||
#include <com/sun/star/accessibility/XAccessibleAction.hpp>
|
||||
#include <com/sun/star/accessibility/XAccessibleComponent.hpp>
|
||||
#include <com/sun/star/accessibility/XAccessibleContext.hpp>
|
||||
#include <com/sun/star/accessibility/XAccessibleStateSet.hpp>
|
||||
#include <com/sun/star/awt/Rectangle.hpp>
|
||||
|
@ -29,7 +28,6 @@
|
|||
#include <cppuhelper/implbase3.hxx>
|
||||
#include <comphelper/accessiblecomponenthelper.hxx>
|
||||
#include <sal/types.h>
|
||||
#include <vcl/vclptr.hxx>
|
||||
|
||||
class SmElementsControl;
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#include <com/sun/star/accessibility/XAccessibleSelection.hpp>
|
||||
#include <com/sun/star/lang/XServiceInfo.hpp>
|
||||
#include <cppuhelper/implbase3.hxx>
|
||||
#include <vcl/vclptr.hxx>
|
||||
#include <rtl/ref.hxx>
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
#include "error.hxx"
|
||||
|
||||
class SmBlankNode;
|
||||
class SmBinVerNode;
|
||||
class SmBracebodyNode;
|
||||
class SmExpressionNode;
|
||||
class SmGlyphSpecialNode;
|
||||
|
|
|
@ -25,12 +25,9 @@
|
|||
#include <com/sun/star/accessibility/AccessibleStateType.hpp>
|
||||
#include <com/sun/star/lang/IndexOutOfBoundsException.hpp>
|
||||
#include <cppuhelper/supportsservice.hxx>
|
||||
#include <cppuhelper/typeprovider.hxx>
|
||||
#include <toolkit/helper/convert.hxx>
|
||||
#include <unotools/accessiblerelationsethelper.hxx>
|
||||
#include <unotools/accessiblestatesethelper.hxx>
|
||||
#include <vcl/settings.hxx>
|
||||
#include <vcl/svapp.hxx>
|
||||
|
||||
using namespace ::com::sun::star::accessibility;
|
||||
using namespace ::com::sun::star;
|
||||
|
|
|
@ -22,21 +22,16 @@
|
|||
#include <ElementsDockingWindow.hxx>
|
||||
#include <smmod.hxx>
|
||||
|
||||
#include <comphelper/accessiblewrapper.hxx>
|
||||
#include <comphelper/processfactory.hxx>
|
||||
#include <comphelper/types.hxx>
|
||||
#include <com/sun/star/accessibility/AccessibleEventId.hpp>
|
||||
#include <com/sun/star/accessibility/AccessibleRole.hpp>
|
||||
#include <com/sun/star/accessibility/AccessibleStateType.hpp>
|
||||
#include <com/sun/star/lang/IndexOutOfBoundsException.hpp>
|
||||
#include <cppuhelper/supportsservice.hxx>
|
||||
#include <cppuhelper/typeprovider.hxx>
|
||||
#include <o3tl/safeint.hxx>
|
||||
#include <toolkit/helper/convert.hxx>
|
||||
#include <unotools/accessiblerelationsethelper.hxx>
|
||||
#include <unotools/accessiblestatesethelper.hxx>
|
||||
#include <vcl/svapp.hxx>
|
||||
#include <vcl/vclevent.hxx>
|
||||
|
||||
using namespace ::com::sun::star;
|
||||
using namespace ::com::sun::star::accessibility;
|
||||
|
|
|
@ -33,9 +33,7 @@
|
|||
#include <sfx2/dispatch.hxx>
|
||||
#include <sfx2/sfxmodelfactory.hxx>
|
||||
#include <svl/stritem.hxx>
|
||||
#include <svtools/colorcfg.hxx>
|
||||
#include <vcl/event.hxx>
|
||||
#include <vcl/help.hxx>
|
||||
#include <vcl/settings.hxx>
|
||||
#include <vcl/uitest/eventdescription.hxx>
|
||||
#include <vcl/uitest/logger.hxx>
|
||||
|
|
|
@ -32,7 +32,6 @@
|
|||
#include <svl/stritem.hxx>
|
||||
#include <sfx2/viewfrm.hxx>
|
||||
#include <svx/AccessibleTextHelper.hxx>
|
||||
#include <svtools/colorcfg.hxx>
|
||||
#include <osl/diagnose.h>
|
||||
|
||||
#include <edit.hxx>
|
||||
|
|
|
@ -29,7 +29,6 @@ one go*/
|
|||
#include <com/sun/star/packages/WrongPasswordException.hpp>
|
||||
#include <com/sun/star/packages/zip/ZipIOException.hpp>
|
||||
#include <com/sun/star/beans/PropertyAttribute.hpp>
|
||||
#include <com/sun/star/container/XNameAccess.hpp>
|
||||
#include <com/sun/star/embed/ElementModes.hpp>
|
||||
#include <com/sun/star/uno/Any.h>
|
||||
#include <com/sun/star/task/XStatusIndicator.hpp>
|
||||
|
@ -55,7 +54,6 @@ one go*/
|
|||
#include <xmloff/DocumentSettingsContext.hxx>
|
||||
#include <xmloff/xmlnamespace.hxx>
|
||||
#include <xmloff/xmltoken.hxx>
|
||||
#include <xmloff/namespacemap.hxx>
|
||||
#include <xmloff/xmluconv.hxx>
|
||||
#include <xmloff/xmlmetai.hxx>
|
||||
#include <svx/dialmgr.hxx>
|
||||
|
|
|
@ -19,16 +19,12 @@
|
|||
|
||||
|
||||
#include <node.hxx>
|
||||
#include <parse.hxx>
|
||||
#include <rect.hxx>
|
||||
#include <symbol.hxx>
|
||||
#include <smmod.hxx>
|
||||
#include "mathtype.hxx"
|
||||
#include "tmpdevice.hxx"
|
||||
#include <visitors.hxx>
|
||||
#include <starmathdatabase.hxx>
|
||||
|
||||
#include <comphelper/string.hxx>
|
||||
#include <tools/color.hxx>
|
||||
#include <tools/fract.hxx>
|
||||
#include <tools/gen.hxx>
|
||||
|
@ -36,7 +32,6 @@
|
|||
#include <vcl/outdev.hxx>
|
||||
#include <sal/log.hxx>
|
||||
#include <osl/diagnose.h>
|
||||
#include <rtl/math.hxx>
|
||||
|
||||
#include <cassert>
|
||||
#include <cstdlib>
|
||||
|
|
|
@ -30,7 +30,6 @@
|
|||
#include <smmod.hxx>
|
||||
|
||||
#include <cassert>
|
||||
#include <cstdlib>
|
||||
|
||||
namespace {
|
||||
|
||||
|
|
|
@ -24,7 +24,6 @@
|
|||
#include <com/sun/star/uno/XComponentContext.hpp>
|
||||
#include <sfx2/docfile.hxx>
|
||||
#include <unotools/mediadescriptor.hxx>
|
||||
#include <sal/log.hxx>
|
||||
#include <sot/storage.hxx>
|
||||
#include <tools/diagnose_ex.h>
|
||||
|
||||
|
|
|
@ -24,7 +24,6 @@
|
|||
#include <svx/zoomctrl.hxx>
|
||||
#include <svx/zoomsliderctrl.hxx>
|
||||
#include <sfx2/docfac.hxx>
|
||||
#include <svx/lboxctrl.hxx>
|
||||
#include <sfx2/app.hxx>
|
||||
|
||||
#include <smdll.hxx>
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
#include <smmod.hxx>
|
||||
#include "cfgitem.hxx"
|
||||
#include <dialog.hxx>
|
||||
#include <edit.hxx>
|
||||
#include <view.hxx>
|
||||
#include <smmod.hrc>
|
||||
#include <starmath.hrc>
|
||||
|
|
|
@ -21,7 +21,6 @@
|
|||
#include "tmpdevice.hxx"
|
||||
|
||||
#include <svtools/colorcfg.hxx>
|
||||
#include <vcl/window.hxx>
|
||||
#include <sal/log.hxx>
|
||||
|
||||
// SmTmpDevice
|
||||
|
|
|
@ -55,7 +55,6 @@
|
|||
#include <vcl/commandevent.hxx>
|
||||
#include <vcl/event.hxx>
|
||||
#include <vcl/decoview.hxx>
|
||||
#include <vcl/menu.hxx>
|
||||
#include <vcl/settings.hxx>
|
||||
#include <vcl/virdev.hxx>
|
||||
#include <sal/log.hxx>
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
#include "tmpdevice.hxx"
|
||||
#include <cursor.hxx>
|
||||
#include <cassert>
|
||||
#include "mathtype.hxx"
|
||||
#include <starmathdatabase.hxx>
|
||||
|
||||
// SmDefaultingVisitor
|
||||
|
|
|
@ -14,6 +14,9 @@ excludelist:
|
|||
- com/sun/star/java/XJavaThreadRegister_11.hpp
|
||||
- com/sun/star/java/XJavaVM.hpp
|
||||
- com/sun/star/lang/XServiceInfo.hpp
|
||||
stoc/source/implementationregistration/mergekeys.cxx:
|
||||
# Actually used
|
||||
- com/sun/star/registry/XRegistryKey.hpp
|
||||
stoc/source/corereflection/crefl.cxx:
|
||||
# Safer to keep for use in cppu::UnoType template
|
||||
- com/sun/star/reflection/XTypeDescription.hpp
|
||||
|
@ -25,6 +28,8 @@ excludelist:
|
|||
stoc/source/invocation_adapterfactory/iafactory.cxx:
|
||||
# Safer to keep for use in cppu::UnoType template
|
||||
- com/sun/star/script/XInvocation.hpp
|
||||
# Complete type needed for uno_Interface
|
||||
- uno/dispatcher.h
|
||||
stoc/source/loader/dllcomponentloader.cxx:
|
||||
# Needed for direct member access
|
||||
- com/sun/star/lang/XMultiServiceFactory.hpp
|
||||
|
@ -34,6 +39,8 @@ excludelist:
|
|||
# Needed for __DIAGNOSE mode
|
||||
- vector
|
||||
- rtl/string.hxx
|
||||
# Actually used
|
||||
- com/sun/star/uno/Sequence.hxx
|
||||
stoc/source/security/access_controller.cxx:
|
||||
# Needed for __DIAGNOSE mode
|
||||
- rtl/ustrbuf.hxx
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue