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

callcatcher: update list

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