conversion of FASTBOOL in the filters repo lead to a slight api change.
This commit is contained in:
parent
575c02a346
commit
7e8f040673
2 changed files with 2 additions and 2 deletions
|
@ -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 ) );
|
||||
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue