callcatcher: XColorList, your time has cometh to an end

This commit is contained in:
Caolán McNamara 2011-07-19 22:37:14 +01:00
parent ca9fe5dff4
commit ac923c5473
2 changed files with 0 additions and 109 deletions

View file

@ -327,33 +327,6 @@ public:
static XColorTable& GetStdColorTable();
};
// -------------------
// class XColorList
// -------------------
class XColorList : public XPropertyList
{
public:
explicit XColorList(
const String& rPath,
XOutdevItemPool* pXPool = NULL
);
virtual ~XColorList();
using XPropertyList::Replace;
XColorEntry* Replace(XColorEntry* pEntry, long nIndex );
using XPropertyList::Remove;
XColorEntry* Remove(long nIndex);
using XPropertyList::Get;
XColorEntry* GetColor(long nIndex) const;
virtual sal_Bool Load();
virtual sal_Bool Save();
virtual sal_Bool Create();
virtual sal_Bool CreateBitmapsForUI();
virtual Bitmap* CreateBitmapForUI( long nIndex, sal_Bool bDelete = sal_True );
};
// --------------------
// class XLineEndTable
// --------------------

View file

@ -457,86 +457,4 @@ Bitmap* XColorTable::CreateBitmapForUI( long /*nIndex*/, sal_Bool /*bDelete*/)
return( NULL );
}
// --------------------
// class XColorList
// --------------------
/*************************************************************************
|*
|* XColorList::XColorList()
|*
*************************************************************************/
XColorList::XColorList(
const String& rPath,
XOutdevItemPool* pInPool
) : XPropertyList( rPath, pInPool )
{
// pBmpList = new List( nInitSize, nReSize );
}
/************************************************************************/
XColorList::~XColorList()
{
}
/************************************************************************/
XColorEntry* XColorList::Replace(XColorEntry* pEntry, long nIndex )
{
return (XColorEntry*) XPropertyList::Replace(pEntry, nIndex);
}
/************************************************************************/
XColorEntry* XColorList::Remove(long nIndex)
{
return (XColorEntry*) XPropertyList::Remove(nIndex);
}
/************************************************************************/
XColorEntry* XColorList::GetColor(long nIndex) const
{
return (XColorEntry*) XPropertyList::Get(nIndex, 0);
}
/************************************************************************/
sal_Bool XColorList::Load()
{
return( sal_False );
}
/************************************************************************/
sal_Bool XColorList::Save()
{
return( sal_False );
}
/************************************************************************/
sal_Bool XColorList::Create()
{
return( sal_False );
}
/************************************************************************/
sal_Bool XColorList::CreateBitmapsForUI()
{
return( sal_False );
}
/************************************************************************/
Bitmap* XColorList::CreateBitmapForUI( long /*nIndex*/, sal_Bool /*bDelete*/)
{
return( NULL );
}
// eof
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */