summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/tokstack.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/inc/tokstack.hxx')
-rw-r--r--sc/source/filter/inc/tokstack.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/filter/inc/tokstack.hxx b/sc/source/filter/inc/tokstack.hxx
index cd18b10ccac0..55d0dba05ea1 100644
--- a/sc/source/filter/inc/tokstack.hxx
+++ b/sc/source/filter/inc/tokstack.hxx
@@ -44,9 +44,9 @@ struct TokenId
TokenId() : nId( 0 ) {}
TokenId( sal_uInt16 n ) : nId( n ) {}
TokenId( const TokenId& r ) : nId( r.nId ) {}
- inline TokenId& operator =( const TokenId& r ) { nId = r.nId; return *this; }
- inline TokenId& operator =( sal_uInt16 n ) { nId = n; return *this; }
- inline operator const sal_uInt16&() const { return nId; }
+ TokenId& operator =( const TokenId& r ) { nId = r.nId; return *this; }
+ TokenId& operator =( sal_uInt16 n ) { nId = n; return *this; }
+ operator const sal_uInt16&() const { return nId; }
};
struct ScComplexRefData;
@@ -232,7 +232,7 @@ class TokenStack
inline void Reset();
- inline bool HasMoreTokens() const { return nPos > 0; }
+ bool HasMoreTokens() const { return nPos > 0; }
inline const TokenId Get();
};