fdo#63154 Removed unused solar.h ref. in linguc., sfx2, starmath, svl and svx
Change-Id: I241661119371b75804fcf9215ff5e5da2a5b9265 Reviewed-on: https://gerrit.libreoffice.org/7732 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
This commit is contained in:
parent
923a3ba49a
commit
c5685ec791
@ -22,9 +22,6 @@
|
||||
|
||||
|
||||
#include <com/sun/star/linguistic2/XMeaning.hpp>
|
||||
|
||||
#include <tools/solar.h>
|
||||
|
||||
#include <cppuhelper/implbase1.hxx>
|
||||
|
||||
|
||||
|
@ -19,8 +19,6 @@
|
||||
#ifndef INCLUDED_SFX2_INC_BITSET_HXX
|
||||
#define INCLUDED_SFX2_INC_BITSET_HXX
|
||||
|
||||
#include <tools/solar.h>
|
||||
|
||||
class BitSet
|
||||
{
|
||||
private:
|
||||
@ -64,174 +62,129 @@ public:
|
||||
sal_Bool operator!=( sal_uInt16 nBit ) const;
|
||||
|
||||
};
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
// returns sal_True if the set is empty
|
||||
|
||||
|
||||
|
||||
inline sal_Bool BitSet::operator!() const
|
||||
{
|
||||
return nCount == 0;
|
||||
}
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
// returns the number of bits in the bitset
|
||||
|
||||
inline sal_uInt16 BitSet::Count() const
|
||||
{
|
||||
return nCount;
|
||||
}
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
// creates the union of two bitset
|
||||
|
||||
inline BitSet BitSet::operator|( const BitSet& rSet ) const
|
||||
{
|
||||
return BitSet(*this) |= rSet;
|
||||
}
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
// creates the union of a bitset with a single bit
|
||||
|
||||
inline BitSet BitSet::operator|( sal_uInt16 nBit ) const
|
||||
{
|
||||
return BitSet(*this) |= nBit;
|
||||
}
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
// creates the asymetric difference
|
||||
|
||||
inline BitSet BitSet::operator-( const BitSet& ) const
|
||||
{
|
||||
return BitSet();
|
||||
}
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
// creates the asymetric difference with a single bit
|
||||
|
||||
|
||||
inline BitSet BitSet::operator-( sal_uInt16 ) const
|
||||
{
|
||||
return BitSet();
|
||||
}
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
// removes the bits contained in rSet
|
||||
|
||||
inline BitSet& BitSet::operator-=( const BitSet& )
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
|
||||
// creates the intersection with another bitset
|
||||
|
||||
inline BitSet BitSet::operator&( const BitSet& ) const
|
||||
{
|
||||
return BitSet();
|
||||
}
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
// intersects with another bitset
|
||||
|
||||
inline BitSet& BitSet::operator&=( const BitSet& )
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
// creates the symetric difference with another bitset
|
||||
|
||||
inline BitSet BitSet::operator^( const BitSet& ) const
|
||||
{
|
||||
return BitSet();
|
||||
}
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
// creates the symetric difference with a single bit
|
||||
|
||||
inline BitSet BitSet::operator^( sal_uInt16 ) const
|
||||
{
|
||||
return BitSet();
|
||||
}
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
// builds the symetric difference with another bitset
|
||||
|
||||
inline BitSet& BitSet::operator^=( const BitSet& )
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
#ifdef BITSET_READY
|
||||
// builds the symetric difference with a single bit
|
||||
|
||||
inline BitSet& BitSet::operator^=( sal_uInt16 )
|
||||
{
|
||||
// crash!!!
|
||||
return BitSet();
|
||||
}
|
||||
#endif
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
// determines if the other bitset is a real superset
|
||||
|
||||
inline sal_Bool BitSet::IsRealSubSet( const BitSet& ) const
|
||||
{
|
||||
return sal_False;
|
||||
}
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
// determines if the other bitset is a superset or equal
|
||||
|
||||
inline sal_Bool BitSet::IsSubSet( const BitSet& ) const
|
||||
{
|
||||
return sal_False;
|
||||
}
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
// determines if the other bitset is a real subset
|
||||
|
||||
inline sal_Bool BitSet::IsRealSuperSet( const BitSet& ) const
|
||||
{
|
||||
return sal_False;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
// determines if the other bitset is a subset or equal
|
||||
|
||||
inline sal_Bool BitSet::IsSuperSet( const BitSet& ) const
|
||||
{
|
||||
return sal_False;
|
||||
}
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
// determines if the bit is the only one in the bitset
|
||||
|
||||
inline sal_Bool BitSet::operator==( sal_uInt16 ) const
|
||||
{
|
||||
return sal_False;
|
||||
}
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
// determines if the bitsets aren't equal
|
||||
|
||||
inline sal_Bool BitSet::operator!=( const BitSet& rSet ) const
|
||||
{
|
||||
return !( *this == rSet );
|
||||
}
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
// determines if the bitset doesn't contain only this bit
|
||||
|
||||
inline sal_Bool BitSet::operator!=( sal_uInt16 nBit ) const
|
||||
{
|
||||
return !( *this == nBit );
|
||||
}
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
class IndexBitSet : BitSet
|
||||
{
|
||||
|
@ -19,8 +19,6 @@
|
||||
#ifndef INCLUDED_SFX2_SOURCE_INC_SLOTSERV_HXX
|
||||
#define INCLUDED_SFX2_SOURCE_INC_SLOTSERV_HXX
|
||||
|
||||
#include <tools/solar.h>
|
||||
|
||||
class SfxSlot;
|
||||
|
||||
class SfxSlotServer
|
||||
@ -42,37 +40,28 @@ public:
|
||||
void Invalidate() { _pSlot = 0; }
|
||||
};
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
inline SfxSlotServer::SfxSlotServer( const SfxSlot &rSlot, sal_uInt16 nShell ):
|
||||
_pSlot( &rSlot),
|
||||
_nShellLevel( nShell )
|
||||
{
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
inline SfxSlotServer::SfxSlotServer():
|
||||
_pSlot(0),
|
||||
_nShellLevel(0)
|
||||
{
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
inline sal_uInt16 SfxSlotServer::GetShellLevel() const
|
||||
{
|
||||
return _nShellLevel;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------
|
||||
|
||||
inline const SfxSlot* SfxSlotServer::GetSlot() const
|
||||
{
|
||||
return _pSlot;
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
||||
|
@ -31,7 +31,6 @@
|
||||
#include <com/sun/star/uno/Sequence.hxx>
|
||||
#include <com/sun/star/uno/Any.h>
|
||||
|
||||
#include <tools/solar.h>
|
||||
#include <rtl/ustring.hxx>
|
||||
#include <unotools/configitem.hxx>
|
||||
#include <vcl/timer.hxx>
|
||||
@ -44,9 +43,6 @@ class SmFormat;
|
||||
class Font;
|
||||
struct SmCfgOther;
|
||||
|
||||
/////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
struct SmFontFormat
|
||||
{
|
||||
OUString aName;
|
||||
@ -63,7 +59,6 @@ struct SmFontFormat
|
||||
bool operator == ( const SmFontFormat &rFntFmt ) const;
|
||||
};
|
||||
|
||||
|
||||
struct SmFntFmtListEntry
|
||||
{
|
||||
OUString aId;
|
||||
@ -100,9 +95,6 @@ public:
|
||||
void SetModified( bool bVal ) { bModified = bVal; }
|
||||
};
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////
|
||||
|
||||
class SmMathConfig : public utl::ConfigItem
|
||||
{
|
||||
SmFormat * pFormat;
|
||||
@ -189,8 +181,6 @@ public:
|
||||
void SetAutoRedraw( sal_Bool bVal );
|
||||
};
|
||||
|
||||
/////////////////////////////////////////////////////////////////
|
||||
|
||||
#endif
|
||||
|
||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
||||
|
@ -54,7 +54,6 @@
|
||||
#include "sal/macros.h"
|
||||
#include "sal/types.h"
|
||||
#include "svl/urihelper.hxx"
|
||||
#include "tools/solar.h"
|
||||
#include "unotools/charclass.hxx"
|
||||
|
||||
namespace com { namespace sun { namespace star { namespace ucb {
|
||||
|
@ -409,7 +409,6 @@
|
||||
#include <tools/resary.hxx>
|
||||
#include <tools/resid.hxx>
|
||||
#include <tools/shl.hxx>
|
||||
#include <tools/solar.h>
|
||||
#include <tools/stream.hxx>
|
||||
#include <tools/urlobj.hxx>
|
||||
#include <unicode/uchar.h>
|
||||
|
@ -23,7 +23,6 @@
|
||||
#include <memory>
|
||||
#include <list>
|
||||
#include <algorithm>
|
||||
#include <tools/solar.h>
|
||||
#include <tools/rtti.hxx>
|
||||
|
||||
class SfxHint;
|
||||
|
@ -18,7 +18,6 @@
|
||||
*/
|
||||
|
||||
#include "EnhancedCustomShapeFontWork.hxx"
|
||||
#include <tools/solar.h>
|
||||
#include <svx/svddef.hxx>
|
||||
#include <svx/svdogrp.hxx>
|
||||
#include <svx/svdopath.hxx>
|
||||
|
@ -20,18 +20,10 @@
|
||||
#ifndef INCLUDED_SVX_SOURCE_INC_FMSLOTINVALIDATOR_HXX
|
||||
#define INCLUDED_SVX_SOURCE_INC_FMSLOTINVALIDATOR_HXX
|
||||
|
||||
#include <tools/solar.h>
|
||||
|
||||
//........................................................................
|
||||
namespace svx
|
||||
{
|
||||
//........................................................................
|
||||
|
||||
typedef sal_uInt16 SfxSlotId;
|
||||
|
||||
//====================================================================
|
||||
//= ISlotInvalidator
|
||||
//====================================================================
|
||||
class ISlotInvalidator
|
||||
{
|
||||
public:
|
||||
@ -40,10 +32,7 @@ namespace svx
|
||||
protected:
|
||||
~ISlotInvalidator() {}
|
||||
};
|
||||
|
||||
//........................................................................
|
||||
} // namespace svx
|
||||
//........................................................................
|
||||
|
||||
#endif // INCLUDED_SVX_SOURCE_INC_FMSLOTINVALIDATOR_HXX
|
||||
|
||||
|
@ -22,19 +22,10 @@
|
||||
|
||||
#include "fmdocumentclassification.hxx"
|
||||
#include <com/sun/star/frame/XLayoutManager.hpp>
|
||||
|
||||
#include <tools/solar.h>
|
||||
|
||||
#include <svx/svxdllapi.h>
|
||||
|
||||
//........................................................................
|
||||
namespace svxform
|
||||
{
|
||||
//........................................................................
|
||||
|
||||
//====================================================================
|
||||
//= FormToolboxes
|
||||
//====================================================================
|
||||
class FormToolboxes
|
||||
{
|
||||
private:
|
||||
@ -74,9 +65,7 @@ namespace svxform
|
||||
}
|
||||
};
|
||||
|
||||
//........................................................................
|
||||
} // namespace svxform
|
||||
//........................................................................
|
||||
|
||||
#endif // INCLUDED_SVX_SOURCE_INC_FORMTOOLBARS_HXX
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user