Kaydet (Commit) 60cf5b57 authored tarafından Caolán McNamara's avatar Caolán McNamara

callcatcher: update list

üst 66c62ca1
...@@ -38,16 +38,6 @@ ...@@ -38,16 +38,6 @@
#undef SfxXRangeItem #undef SfxXRangeItem
#undef SfxXRangesItem #undef SfxXRangesItem
#ifndef _SFXITEMS_HXX
#define NUMTYPE sal_uLong
#define SfxXRangeItem SfxULongRangeItem
#define SfxXRangesItem SfxULongRangesItem
#include <svl/rngitem.hxx>
#undef NUMTYPE
#undef SfxXRangeItem
#undef SfxXRangesItem
#endif
#define _SFXRNGITEM_HXX #define _SFXRNGITEM_HXX
#else #else
...@@ -94,7 +84,6 @@ private: ...@@ -94,7 +84,6 @@ private:
public: public:
TYPEINFO(); TYPEINFO();
SfxXRangesItem(); SfxXRangesItem();
SfxXRangesItem( sal_uInt16 nWID, const NUMTYPE *pRanges );
SfxXRangesItem( sal_uInt16 nWID, SvStream &rStream ); SfxXRangesItem( sal_uInt16 nWID, SvStream &rStream );
SfxXRangesItem( const SfxXRangesItem& rItem ); SfxXRangesItem( const SfxXRangesItem& rItem );
virtual ~SfxXRangesItem(); virtual ~SfxXRangesItem();
......
...@@ -36,12 +36,6 @@ ...@@ -36,12 +36,6 @@
#include <svl/rngitem.hxx> #include <svl/rngitem.hxx>
#include "rngitem_inc.cxx" #include "rngitem_inc.cxx"
#define NUMTYPE sal_uInt32
#define SfxXRangeItem SfxULongRangeItem
#define SfxXRangesItem SfxULongRangesItem
#include <svl/rngitem.hxx>
#include "rngitem_inc.cxx"
#else #else
// We leave this condition just in case NUMTYPE has been defined externally to this // We leave this condition just in case NUMTYPE has been defined externally to this
......
...@@ -108,7 +108,7 @@ SfxPoolItem* SfxXRangeItem::Clone(SfxItemPool *) const ...@@ -108,7 +108,7 @@ SfxPoolItem* SfxXRangeItem::Clone(SfxItemPool *) const
SfxPoolItem* SfxXRangeItem::Create(SvStream &rStream, sal_uInt16) const SfxPoolItem* SfxXRangeItem::Create(SvStream &rStream, sal_uInt16) const
{ {
NUMTYPE nVon, nBis; NUMTYPE nVon(0), nBis(0);
rStream >> nVon; rStream >> nVon;
rStream >> nBis; rStream >> nBis;
return new SfxXRangeItem( Which(), nVon, nBis ); return new SfxXRangeItem( Which(), nVon, nBis );
...@@ -132,20 +132,10 @@ SfxXRangesItem::SfxXRangesItem() ...@@ -132,20 +132,10 @@ SfxXRangesItem::SfxXRangesItem()
//------------------------------------------------------------------------- //-------------------------------------------------------------------------
SfxXRangesItem::SfxXRangesItem( sal_uInt16 nWID, const NUMTYPE *pRanges )
: SfxPoolItem( nWID )
{
NUMTYPE nCount = Count_Impl(pRanges) + 1;
_pRanges = new NUMTYPE[nCount];
memcpy( _pRanges, pRanges, sizeof(NUMTYPE) * nCount );
}
//-------------------------------------------------------------------------
SfxXRangesItem::SfxXRangesItem( sal_uInt16 nWID, SvStream &rStream ) SfxXRangesItem::SfxXRangesItem( sal_uInt16 nWID, SvStream &rStream )
: SfxPoolItem( nWID ) : SfxPoolItem( nWID )
{ {
NUMTYPE nCount; NUMTYPE nCount(0);
rStream >> nCount; rStream >> nCount;
_pRanges = new NUMTYPE[nCount + 1]; _pRanges = new NUMTYPE[nCount + 1];
for ( NUMTYPE n = 0; n < nCount; ++n ) for ( NUMTYPE n = 0; n < nCount; ++n )
......
...@@ -136,19 +136,10 @@ SfxUINT32s::Remove(unsigned short, unsigned short) ...@@ -136,19 +136,10 @@ SfxUINT32s::Remove(unsigned short, unsigned short)
SfxUINT32s::Replace(unsigned int const&, unsigned short) SfxUINT32s::Replace(unsigned int const&, unsigned short)
SfxUINT32s::Replace(unsigned int const*, unsigned short, unsigned short) SfxUINT32s::Replace(unsigned int const*, unsigned short, unsigned short)
SfxUINT32s::_ForEach(unsigned short, unsigned short, unsigned char (*)(unsigned int const&, void*), void*) SfxUINT32s::_ForEach(unsigned short, unsigned short, unsigned char (*)(unsigned int const&, void*), void*)
SfxUShortRangesItem::SfxUShortRangesItem(unsigned short, unsigned short const*)
Slider::SetRangeMax(long) Slider::SetRangeMax(long)
Slider::SetRangeMin(long) Slider::SetRangeMin(long)
Slider::Slider(Window*, ResId const&) Slider::Slider(Window*, ResId const&)
SmFilterDetect::impl_createFactory(com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> const&) SmFilterDetect::impl_createFactory(com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> const&)
SortedPositions::Insert(SortedPositions const*, unsigned short, unsigned short)
SortedPositions::Insert(unsigned int const&, unsigned short&)
SortedPositions::Insert(unsigned int const*, unsigned short)
SortedPositions::Remove(unsigned int const&, unsigned short)
SortedPositions::Remove(unsigned short, unsigned short)
SortedPositions_SAR::Replace(unsigned int const&, unsigned short)
SortedPositions_SAR::Replace(unsigned int const*, unsigned short, unsigned short)
SortedPositions_SAR::_ForEach(unsigned short, unsigned short, unsigned char (*)(unsigned int const&, void*), void*)
SotStorage::GetProperty(String const&, String const&, com::sun::star::uno::Any&) SotStorage::GetProperty(String const&, String const&, com::sun::star::uno::Any&)
SpanStyleManager::get(WPXString const&) const SpanStyleManager::get(WPXString const&) const
SpinButton::SpinButton(Window*, ResId const&) SpinButton::SpinButton(Window*, ResId const&)
......
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