summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/xlstyle.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/inc/xlstyle.hxx')
-rw-r--r--sc/source/filter/inc/xlstyle.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/source/filter/inc/xlstyle.hxx b/sc/source/filter/inc/xlstyle.hxx
index 5a258be4023d..3770095c87fd 100644
--- a/sc/source/filter/inc/xlstyle.hxx
+++ b/sc/source/filter/inc/xlstyle.hxx
@@ -255,16 +255,16 @@ public:
explicit XclDefaultPalette( const XclRoot& rRoot );
/** Returns the color count in the current palette. */
- inline sal_uInt32 GetColorCount() const { return mnTableSize - EXC_COLOR_USEROFFSET; }
+ sal_uInt32 GetColorCount() const { return mnTableSize - EXC_COLOR_USEROFFSET; }
/** Returns the default RGB color data for a (non-zero-based) Excel color or COL_AUTO on error. */
ColorData GetDefColorData( sal_uInt16 nXclIndex ) const;
/** Returns the default color for a (non-zero-based) Excel color or COL_AUTO on error. */
- inline Color GetDefColor( sal_uInt16 nXclIndex ) const
+ Color GetDefColor( sal_uInt16 nXclIndex ) const
{ return Color( GetDefColorData( nXclIndex ) ); }
/** Returns true, if the passed Excel color index is a system color. */
- inline bool IsSystemColor( sal_uInt16 nXclIndex ) const { return nXclIndex >= mnTableSize; }
+ bool IsSystemColor( sal_uInt16 nXclIndex ) const { return nXclIndex >= mnTableSize; }
private:
const ColorData* mpnColorTable; /// The table with RGB values.
@@ -452,7 +452,7 @@ public:
explicit XclNumFmtBuffer( const XclRoot& rRoot );
/** Returns the core index of the current standard number format. */
- inline sal_uLong GetStdScNumFmt() const { return mnStdScNumFmt; }
+ sal_uLong GetStdScNumFmt() const { return mnStdScNumFmt; }
protected:
typedef ::std::map< sal_uInt16, XclNumFmt > XclNumFmtMap;
@@ -461,7 +461,7 @@ protected:
void InitializeImport();
/** Returns the current number format map. */
- inline const XclNumFmtMap& GetFormatMap() const { return maFmtMap; }
+ const XclNumFmtMap& GetFormatMap() const { return maFmtMap; }
/** Inserts a new number format for the specified Excel format index. */
void InsertFormat( sal_uInt16 nXclNumFmt, const OUString& rFormat );
@@ -575,9 +575,9 @@ public:
bool HasUsedFlags() const;
/** Returns true, if this is a hard cell format. */
- inline bool IsCellXF() const { return mbCellXF; }
+ bool IsCellXF() const { return mbCellXF; }
/** Returns true, if this is a cell style. */
- inline bool IsStyleXF() const { return !IsCellXF(); }
+ bool IsStyleXF() const { return !IsCellXF(); }
protected:
/** Returns true, if this object is equal to the passed. */