conversion of FASTBOOL in the filters repo lead to a slight api change.

This commit is contained in:
Norbert Thiebaud 2010-11-01 15:27:38 -05:00
parent 575c02a346
commit 7e8f040673
2 changed files with 2 additions and 2 deletions

View file

@ -3121,7 +3121,7 @@ XclImpSimpleDffConverter::~XclImpSimpleDffConverter()
{
}
int XclImpSimpleDffConverter::GetColorFromPalette( USHORT nIndex, Color& rColor ) const
bool XclImpSimpleDffConverter::GetColorFromPalette( USHORT nIndex, Color& rColor ) const
{
ColorData nColor = GetPalette().GetColorData( static_cast< sal_uInt16 >( nIndex ) );

View file

@ -977,7 +977,7 @@ public:
protected:
/** Returns a color from the Excel color palette. */
virtual int GetColorFromPalette( USHORT nIndex, Color& rColor ) const;
virtual bool GetColorFromPalette( USHORT nIndex, Color& rColor ) const;
};
// ----------------------------------------------------------------------------