Kaydet (Commit) 28726190 authored tarafından Gabor Kelemen's avatar Gabor Kelemen Kaydeden (comit) Miklos Vajna

find-unneeded-includes: Avoid proposing o3tl fw declaration

This does not really work: even when it seems to, it compiles only
because of transitive includes

- Filter o3tl/typed_flags_set.hxx in f-u-u
- Remove already added fw declarations from hxx files and
  include full header just in case
- Remove now unnecessary blacklist entries

Change-Id: Ie0de6667af697095a623b435806449e7e28a6004
Reviewed-on: https://gerrit.libreoffice.org/64659
Tested-by: Jenkins
Reviewed-by: 's avatarMiklos Vajna <vmiklos@collabora.com>
üst 0ad2302c
...@@ -63,6 +63,14 @@ def ignoreRemoval(include, toAdd, absFileName, moduleRules): ...@@ -63,6 +63,14 @@ def ignoreRemoval(include, toAdd, absFileName, moduleRules):
if include == k and v in toAdd: if include == k and v in toAdd:
return True return True
# Avoid proposing o3tl fw declaration
o3tl = {
"o3tl/typed_flags_set.hxx" : "namespace o3tl { template <typename T> struct typed_flags; }",
}
for k, v, in o3tl.items():
if include == k and v in toAdd:
return True
# Follow boost documentation. # Follow boost documentation.
if include == "boost/optional.hpp" and "boost/optional/optional.hpp" in toAdd: if include == "boost/optional.hpp" and "boost/optional/optional.hpp" in toAdd:
return True return True
......
...@@ -40,12 +40,6 @@ blacklist: ...@@ -40,12 +40,6 @@ blacklist:
include/rtl/math.hxx: include/rtl/math.hxx:
# TODO MSVC does not compile basegfx/numeric/ftools.hxx when this is replaced # TODO MSVC does not compile basegfx/numeric/ftools.hxx when this is replaced
- math.h - math.h
include/registry/regtype.h:
# Needed for template
- o3tl/typed_flags_set.hxx
include/registry/types.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
include/sfx2/toolbarids.hxx: include/sfx2/toolbarids.hxx:
# needed for enum definition # needed for enum definition
- sal/types.h - sal/types.h
...@@ -103,9 +97,6 @@ blacklist: ...@@ -103,9 +97,6 @@ blacklist:
- cppuhelper/typeprovider.hxx - cppuhelper/typeprovider.hxx
- cppuhelper/supportsservice.hxx - cppuhelper/supportsservice.hxx
- cppuhelper/factory.hxx - cppuhelper/factory.hxx
include/ucbhelper/simpleinteractionrequest.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
include/comphelper/accessiblekeybindinghelper.hxx: include/comphelper/accessiblekeybindinghelper.hxx:
# base class has to be a complete type # base class has to be a complete type
- com/sun/star/accessibility/XAccessibleKeyBinding.hpp - com/sun/star/accessibility/XAccessibleKeyBinding.hpp
...@@ -138,13 +129,8 @@ blacklist: ...@@ -138,13 +129,8 @@ blacklist:
# base class has to be a complete type # base class has to be a complete type
- com/sun/star/lang/XSingleServiceFactory.hpp - com/sun/star/lang/XSingleServiceFactory.hpp
include/comphelper/configurationhelper.hxx: include/comphelper/configurationhelper.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
# Needed for implicit destructor # Needed for implicit destructor
- com/sun/star/uno/Any.hxx - com/sun/star/uno/Any.hxx
include/comphelper/documentconstants.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
include/comphelper/docpasswordrequest.hxx: include/comphelper/docpasswordrequest.hxx:
# base class has to be a complete type # base class has to be a complete type
- com/sun/star/task/XInteractionRequest.hpp - com/sun/star/task/XInteractionRequest.hpp
...@@ -201,17 +187,12 @@ blacklist: ...@@ -201,17 +187,12 @@ blacklist:
include/comphelper/uno3.hxx: include/comphelper/uno3.hxx:
# Needed for macro # Needed for macro
- comphelper/sequence.hxx - comphelper/sequence.hxx
include/basegfx/polygon/b2dpolygontools.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
include/basegfx/utils/unopolypolygon.hxx: include/basegfx/utils/unopolypolygon.hxx:
# base class has to be a complete type # base class has to be a complete type
- com/sun/star/lang/XServiceInfo.hpp - com/sun/star/lang/XServiceInfo.hpp
- com/sun/star/rendering/XBezierPolyPolygon2D.hpp - com/sun/star/rendering/XBezierPolyPolygon2D.hpp
- com/sun/star/rendering/XLinePolyPolygon2D.hpp - com/sun/star/rendering/XLinePolyPolygon2D.hpp
include/sot/exchange.hxx: include/sot/exchange.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
# Used in a macro #define # Used in a macro #define
- com/sun/star/datatransfer/dnd/DNDConstants.hpp - com/sun/star/datatransfer/dnd/DNDConstants.hpp
include/tools/debug.hxx: include/tools/debug.hxx:
...@@ -222,21 +203,9 @@ blacklist: ...@@ -222,21 +203,9 @@ blacklist:
- com/sun/star/lang/IllegalArgumentException.hpp - com/sun/star/lang/IllegalArgumentException.hpp
- com/sun/star/uno/RuntimeException.hpp - com/sun/star/uno/RuntimeException.hpp
- rtl/ustring.hxx - rtl/ustring.hxx
include/tools/fontenum.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
include/tools/svlibrary.h: include/tools/svlibrary.h:
# Used behind #ifndef # Used behind #ifndef
- osl/module.h - osl/module.h
include/tools/poly.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
include/tools/stream.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
include/tools/urlobj.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
include/unotools/accessiblestatesethelper.hxx: include/unotools/accessiblestatesethelper.hxx:
# base class has to be a complete type # base class has to be a complete type
- com/sun/star/accessibility/XAccessibleStateSet.hpp - com/sun/star/accessibility/XAccessibleStateSet.hpp
...@@ -250,18 +219,6 @@ blacklist: ...@@ -250,18 +219,6 @@ blacklist:
include/unotools/fontcfg.hxx: include/unotools/fontcfg.hxx:
# Needed for a sal_uLong enum # Needed for a sal_uLong enum
- tools/solar.h - tools/solar.h
include/unotools/fontcvt.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
include/unotools/fontdefs.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
include/unotools/options.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
include/unotools/readwritemutexguard.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
include/unotools/streamwrap.hxx: include/unotools/streamwrap.hxx:
# base class has to be a complete type # base class has to be a complete type
- com/sun/star/io/XOutputStream.hpp - com/sun/star/io/XOutputStream.hpp
...@@ -278,25 +235,13 @@ blacklist: ...@@ -278,25 +235,13 @@ blacklist:
- com/sun/star/lang/XInitialization.hpp - com/sun/star/lang/XInitialization.hpp
- com/sun/star/lang/XServiceInfo.hpp - com/sun/star/lang/XServiceInfo.hpp
- com/sun/star/xml/sax/XFastParser.hpp - com/sun/star/xml/sax/XFastParser.hpp
include/i18nutil/casefolding.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
include/i18nutil/transliteration.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
include/svl/numuno.hxx: include/svl/numuno.hxx:
# base class has to be a complete type # base class has to be a complete type
- com/sun/star/lang/XUnoTunnel.hpp - com/sun/star/lang/XUnoTunnel.hpp
- com/sun/star/util/XNumberFormatsSupplier.hpp - com/sun/star/util/XNumberFormatsSupplier.hpp
include/svl/srchdefs.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
include/svl/urihelper.hxx: include/svl/urihelper.hxx:
# base class has to be a complete type # base class has to be a complete type
- tools/link.hxx - tools/link.hxx
include/vcl/bitmap.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
include/vcl/builderfactory.hxx: include/vcl/builderfactory.hxx:
# Needed for macros # Needed for macros
- vcl/builder.hxx - vcl/builder.hxx
...@@ -304,21 +249,12 @@ blacklist: ...@@ -304,21 +249,12 @@ blacklist:
include/vcl/devicecoordinate.hxx: include/vcl/devicecoordinate.hxx:
# Needed for #if configure switch # Needed for #if configure switch
- basegfx/point/b2ipoint.hxx - basegfx/point/b2ipoint.hxx
include/vcl/errinf.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
include/vcl/edit.hxx: include/vcl/edit.hxx:
# Needed for template # Needed for template
- o3tl/deleter.hxx - o3tl/deleter.hxx
include/vcl/event.hxx: include/vcl/event.hxx:
# Needed for enum type # Needed for enum type
- vcl/window.hxx - vcl/window.hxx
include/vcl/fntstyle.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
include/vcl/help.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
include/vcl/imap.hxx: include/vcl/imap.hxx:
# Needed for implicit dtor # Needed for implicit dtor
- vcl/imapobj.hxx - vcl/imapobj.hxx
......
...@@ -21,11 +21,11 @@ ...@@ -21,11 +21,11 @@
#include <svl/svldllapi.h> #include <svl/svldllapi.h>
#include <sal/types.h> #include <sal/types.h>
#include <o3tl/typed_flags_set.hxx>
#include <unotools/configitem.hxx> #include <unotools/configitem.hxx>
#include <unotools/options.hxx> #include <unotools/options.hxx>
#include <i18nlangtag/lang.h> #include <i18nlangtag/lang.h>
#include <memory> #include <memory>
namespace o3tl { template <typename T> struct typed_flags; }
// class SvtLanguageOptions ---------------------------------------------------- // class SvtLanguageOptions ----------------------------------------------------
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
#include <svl/svldllapi.h> #include <svl/svldllapi.h>
#include <rtl/ustrbuf.hxx> #include <rtl/ustrbuf.hxx>
#include <rtl/ustring.hxx> #include <rtl/ustring.hxx>
#include <o3tl/typed_flags_set.hxx>
#include <i18nlangtag/lang.h> #include <i18nlangtag/lang.h>
#include <com/sun/star/util/NumberFormat.hpp> #include <com/sun/star/util/NumberFormat.hpp>
#include <unotools/localedatawrapper.hxx> #include <unotools/localedatawrapper.hxx>
...@@ -36,7 +37,6 @@ ...@@ -36,7 +37,6 @@
namespace com { namespace sun { namespace star { namespace i18n { class XNumberFormatCode; } } } } namespace com { namespace sun { namespace star { namespace i18n { class XNumberFormatCode; } } } }
namespace com { namespace sun { namespace star { namespace i18n { struct Currency; } } } } namespace com { namespace sun { namespace star { namespace i18n { struct Currency; } } } }
namespace com { namespace sun { namespace star { namespace i18n { struct NumberFormatCode; } } } } namespace com { namespace sun { namespace star { namespace i18n { struct NumberFormatCode; } } } }
namespace o3tl { template <typename T> struct typed_flags; }
class Date; class Date;
class Color; class Color;
......
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#include <com/sun/star/uno/Reference.h> #include <com/sun/star/uno/Reference.h>
#include <unotools/unotoolsdllapi.h> #include <unotools/unotoolsdllapi.h>
#include <unotools/options.hxx> #include <unotools/options.hxx>
#include <o3tl/typed_flags_set.hxx>
namespace com{ namespace sun{ namespace star{ namespace com{ namespace sun{ namespace star{
namespace uno{ namespace uno{
...@@ -49,8 +50,6 @@ enum class ConfigItemMode ...@@ -49,8 +50,6 @@ enum class ConfigItemMode
ReleaseTree = 0x04, ReleaseTree = 0x04,
}; };
namespace o3tl { template <typename T> struct typed_flags; }
namespace o3tl namespace o3tl
{ {
template<> struct typed_flags<ConfigItemMode> : is_typed_flags<ConfigItemMode, 0x07> {}; template<> struct typed_flags<ConfigItemMode> : is_typed_flags<ConfigItemMode, 0x07> {};
......
...@@ -23,12 +23,12 @@ ...@@ -23,12 +23,12 @@
#include <tools/solar.h> #include <tools/solar.h>
#include <tools/fontenum.hxx> #include <tools/fontenum.hxx>
#include <com/sun/star/uno/Reference.hxx> #include <com/sun/star/uno/Reference.hxx>
#include <o3tl/typed_flags_set.hxx>
#include <unordered_map> #include <unordered_map>
#include <unordered_set> #include <unordered_set>
#include <vector> #include <vector>
namespace o3tl { template <typename T> struct typed_flags; }
namespace com { namespace sun { namespace star { namespace container { class XNameAccess; } } } } namespace com { namespace sun { namespace star { namespace container { class XNameAccess; } } } }
namespace com { namespace sun { namespace star { namespace lang { class XMultiServiceFactory; } } } } namespace com { namespace sun { namespace star { namespace lang { class XMultiServiceFactory; } } } }
......
...@@ -23,9 +23,9 @@ ...@@ -23,9 +23,9 @@
#include <memory> #include <memory>
#include <vcl/graph.hxx> #include <vcl/graph.hxx>
#include <vcl/dllapi.h> #include <vcl/dllapi.h>
#include <o3tl/typed_flags_set.hxx>
namespace com { namespace sun { namespace star { namespace graphic { class XGraphic; } } } } namespace com { namespace sun { namespace star { namespace graphic { class XGraphic; } } } }
namespace o3tl { template <typename T> struct typed_flags; }
// Adjustment defines // Adjustment defines
enum class GraphicAdjustmentFlags enum class GraphicAdjustmentFlags
......
...@@ -24,13 +24,12 @@ ...@@ -24,13 +24,12 @@
#include <vcl/outdev.hxx> #include <vcl/outdev.hxx>
#include <vcl/vclptr.hxx> #include <vcl/vclptr.hxx>
#include <vcl/vclenum.hxx> #include <vcl/vclenum.hxx>
#include <o3tl/typed_flags_set.hxx>
namespace tools { class Rectangle; } namespace tools { class Rectangle; }
class Point; class Point;
class Color; class Color;
namespace o3tl { template <typename T> struct typed_flags; }
// Flags for DrawSymbol() // Flags for DrawSymbol()
enum class DrawSymbolFlags enum class DrawSymbolFlags
{ {
......
...@@ -23,8 +23,7 @@ ...@@ -23,8 +23,7 @@
#include <vcl/dllapi.h> #include <vcl/dllapi.h>
#include <vcl/syswin.hxx> #include <vcl/syswin.hxx>
#include <memory> #include <memory>
#include <o3tl/typed_flags_set.hxx>
namespace o3tl { template <typename T> struct typed_flags; }
class ToolBox; class ToolBox;
......
...@@ -24,12 +24,12 @@ ...@@ -24,12 +24,12 @@
#include <vcl/dllapi.h> #include <vcl/dllapi.h>
#include <vcl/graph.hxx> #include <vcl/graph.hxx>
#include <vcl/errcode.hxx> #include <vcl/errcode.hxx>
#include <o3tl/typed_flags_set.hxx>
#include <memory> #include <memory>
namespace com { namespace sun { namespace star { namespace beans { struct PropertyValue; } } } } namespace com { namespace sun { namespace star { namespace beans { struct PropertyValue; } } } }
namespace com { namespace sun { namespace star { namespace uno { template <class E> class Sequence; } } } } namespace com { namespace sun { namespace star { namespace uno { template <class E> class Sequence; } } } }
namespace o3tl { template <typename T> struct typed_flags; }
class INetURLObject; class INetURLObject;
......
...@@ -131,9 +131,6 @@ blacklist: ...@@ -131,9 +131,6 @@ blacklist:
- com/sun/star/sheet/XSpreadsheets2.hpp - com/sun/star/sheet/XSpreadsheets2.hpp
- com/sun/star/table/XTableColumns.hpp - com/sun/star/table/XTableColumns.hpp
- com/sun/star/table/XTableRows.hpp - com/sun/star/table/XTableRows.hpp
sc/inc/dpglobal.hxx:
# base class has to be a complete type
- o3tl/typed_flags_set.hxx
sc/inc/dptabsrc.hxx: sc/inc/dptabsrc.hxx:
# base class has to be a complete type # base class has to be a complete type
- com/sun/star/beans/XPropertySet.hpp - com/sun/star/beans/XPropertySet.hpp
...@@ -168,9 +165,6 @@ blacklist: ...@@ -168,9 +165,6 @@ blacklist:
- com/sun/star/text/XTextField.hpp - com/sun/star/text/XTextField.hpp
- com/sun/star/beans/XPropertySet.hpp - com/sun/star/beans/XPropertySet.hpp
- com/sun/star/lang/XUnoTunnel.hpp - com/sun/star/lang/XUnoTunnel.hpp
sc/inc/fillinfo.hxx:
# base class has to be a complete type
- o3tl/typed_flags_set.hxx
sc/inc/filtuno.hxx: sc/inc/filtuno.hxx:
# base class has to be a complete type # base class has to be a complete type
- com/sun/star/beans/XPropertyAccess.hpp - com/sun/star/beans/XPropertyAccess.hpp
...@@ -363,9 +357,6 @@ blacklist: ...@@ -363,9 +357,6 @@ blacklist:
- com/sun/star/beans/XPropertySet.hpp - com/sun/star/beans/XPropertySet.hpp
- com/sun/star/lang/XServiceInfo.hpp - com/sun/star/lang/XServiceInfo.hpp
- com/sun/star/sheet/XFormulaParser.hpp - com/sun/star/sheet/XFormulaParser.hpp
sc/inc/types.hxx:
# base class has to be a complete type
- o3tl/typed_flags_set.hxx
sc/inc/unitconv.hxx: sc/inc/unitconv.hxx:
# base class has to be a complete type # base class has to be a complete type
- map - map
...@@ -404,9 +395,6 @@ blacklist: ...@@ -404,9 +395,6 @@ blacklist:
sc/source/filter/inc/xistream.hxx: sc/source/filter/inc/xistream.hxx:
# Needed for implicit dtor # Needed for implicit dtor
- com/sun/star/beans/NamedValue.hpp - com/sun/star/beans/NamedValue.hpp
sc/source/filter/inc/xlstring.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
sc/source/ui/inc/AccessibleContextBase.hxx: sc/source/ui/inc/AccessibleContextBase.hxx:
# base class has to be a complete type # base class has to be a complete type
- com/sun/star/accessibility/XAccessibleComponent.hpp - com/sun/star/accessibility/XAccessibleComponent.hpp
...@@ -487,9 +475,6 @@ blacklist: ...@@ -487,9 +475,6 @@ blacklist:
sc/source/ui/inc/RandomNumberGeneratorDialog.hxx: sc/source/ui/inc/RandomNumberGeneratorDialog.hxx:
# base class has to be a complete type # base class has to be a complete type
- viewdata.hxx - viewdata.hxx
sc/source/ui/inc/scui_def.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
sc/source/ui/inc/StatisticsInputOutputDialog.hxx: sc/source/ui/inc/StatisticsInputOutputDialog.hxx:
# base class has to be a complete type # base class has to be a complete type
- viewdata.hxx - viewdata.hxx
......
...@@ -35,11 +35,10 @@ ...@@ -35,11 +35,10 @@
#include <memory> #include <memory>
#include <set> #include <set>
#include <com/sun/star/uno/Sequence.hxx> #include <com/sun/star/uno/Sequence.hxx>
#include <o3tl/typed_flags_set.hxx>
#include <formula/FormulaCompiler.hxx> #include <formula/FormulaCompiler.hxx>
namespace o3tl { template <typename T> struct typed_flags; }
// constants and data types also for external modules (ScInterpreter et al) // constants and data types also for external modules (ScInterpreter et al)
#define MAXSTRLEN 1024 /* maximum length of input string of one symbol */ #define MAXSTRLEN 1024 /* maximum length of input string of one symbol */
......
...@@ -22,8 +22,7 @@ ...@@ -22,8 +22,7 @@
#include "xiroot.hxx" #include "xiroot.hxx"
#include <mdds/flat_segment_tree.hpp> #include <mdds/flat_segment_tree.hpp>
#include <o3tl/typed_flags_set.hxx>
namespace o3tl { template <typename T> struct typed_flags; }
enum class ExcColRowFlags : sal_uInt8 { enum class ExcColRowFlags : sal_uInt8 {
NONE = 0x00, NONE = 0x00,
......
...@@ -24,8 +24,7 @@ ...@@ -24,8 +24,7 @@
#include "xeroot.hxx" #include "xeroot.hxx"
#include <externalrefmgr.hxx> #include <externalrefmgr.hxx>
#include <memory> #include <memory>
#include <o3tl/typed_flags_set.hxx>
namespace o3tl { template <typename T> struct typed_flags; }
struct ScSingleRefData; struct ScSingleRefData;
struct ScComplexRefData; struct ScComplexRefData;
......
...@@ -25,14 +25,13 @@ ...@@ -25,14 +25,13 @@
#include <address.hxx> #include <address.hxx>
#include "csvsplits.hxx" #include "csvsplits.hxx"
#include <com/sun/star/uno/Reference.hxx> #include <com/sun/star/uno/Reference.hxx>
#include <o3tl/typed_flags_set.hxx>
class ScAccessibleCsvControl; class ScAccessibleCsvControl;
namespace com { namespace sun { namespace star { namespace accessibility { namespace com { namespace sun { namespace star { namespace accessibility {
class XAccessible; class XAccessible;
} } } } } } } }
namespace o3tl { template <typename T> struct typed_flags; }
/** Minimum character count for a column in separators mode. */ /** Minimum character count for a column in separators mode. */
const sal_Int32 CSV_MINCOLWIDTH = 8; const sal_Int32 CSV_MINCOLWIDTH = 8;
/** Maximum length of a cell string. */ /** Maximum length of a cell string. */
......
...@@ -177,9 +177,6 @@ blacklist: ...@@ -177,9 +177,6 @@ blacklist:
- com/sun/star/drawing/framework/XView.hpp - com/sun/star/drawing/framework/XView.hpp
- com/sun/star/lang/XUnoTunnel.hpp - com/sun/star/lang/XUnoTunnel.hpp
- com/sun/star/view/XSelectionSupplier.hpp - com/sun/star/view/XSelectionSupplier.hpp
sd/source/ui/inc/tools/IdleDetection.hxx:
# Needed for template
- o3tl/typed_flags_set.hxx
sd/source/ui/inc/tools/PropertySet.hxx: sd/source/ui/inc/tools/PropertySet.hxx:
# base class has to be a complete type # base class has to be a complete type
- com/sun/star/beans/XPropertySet.hpp - com/sun/star/beans/XPropertySet.hpp
......
...@@ -22,20 +22,7 @@ blacklist: ...@@ -22,20 +22,7 @@ blacklist:
sw/inc/docfac.hxx: sw/inc/docfac.hxx:
# Complete type is needed by rtl::Reference<SwDoc>. # Complete type is needed by rtl::Reference<SwDoc>.
- doc.hxx - doc.hxx
sw/inc/accmap.hxx:
- o3tl/typed_flags_set.hxx
sw/inc/crsrsh.hxx:
- o3tl/typed_flags_set.hxx
sw/inc/cshtyp.hxx:
- o3tl/typed_flags_set.hxx
sw/inc/fesh.hxx:
- o3tl/typed_flags_set.hxx
sw/inc/modcfg.hxx:
- o3tl/typed_flags_set.hxx
sw/inc/ndtyp.hxx:
- o3tl/typed_flags_set.hxx
sw/inc/swtypes.hxx: sw/inc/swtypes.hxx:
- o3tl/typed_flags_set.hxx
# Needed for macro #define # Needed for macro #define
- com/sun/star/i18n/CollatorOptions.hpp - com/sun/star/i18n/CollatorOptions.hpp
sw/inc/doc.hxx: sw/inc/doc.hxx:
...@@ -54,16 +41,6 @@ blacklist: ...@@ -54,16 +41,6 @@ blacklist:
- utility - utility
sw/inc/shellid.hxx: sw/inc/shellid.hxx:
- sfx2/shell.hxx - sfx2/shell.hxx
sw/inc/swurl.hxx:
- o3tl/typed_flags_set.hxx
sw/inc/tblenum.hxx:
- o3tl/typed_flags_set.hxx
sw/inc/tox.hxx:
- o3tl/typed_flags_set.hxx
sw/inc/undobj.hxx:
- o3tl/typed_flags_set.hxx
sw/inc/itabenum.hxx:
- o3tl/typed_flags_set.hxx
sw/inc/unosett.hxx: sw/inc/unosett.hxx:
# sw::UnoImplPtr typedef # sw::UnoImplPtr typedef
- unobaseclass.hxx - unobaseclass.hxx
...@@ -265,4 +242,3 @@ blacklist: ...@@ -265,4 +242,3 @@ blacklist:
- vector - vector
sw/inc/shellio.hxx: sw/inc/shellio.hxx:
- o3tl/deleter.hxx - o3tl/deleter.hxx
- o3tl/typed_flags_set.hxx
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment