summaryrefslogtreecommitdiff
path: root/sc/inc/zforauto.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc/zforauto.hxx')
-rw-r--r--sc/inc/zforauto.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/inc/zforauto.hxx b/sc/inc/zforauto.hxx
index 4e9be263cb0a..634d464f564b 100644
--- a/sc/inc/zforauto.hxx
+++ b/sc/inc/zforauto.hxx
@@ -39,20 +39,20 @@ public:
void Save( SvStream& rStream, rtl_TextEncoding eByteStrSet ) const; // saving of the numberformats
void PutFormatIndex(sal_uInt32 nFormat, SvNumberFormatter& rFormatter);
sal_uInt32 GetFormatIndex( SvNumberFormatter& rFormatter);
- inline bool operator==(const ScNumFormatAbbrev& rNumFormat) const
+ bool operator==(const ScNumFormatAbbrev& rNumFormat) const
{
return ((sFormatstring == rNumFormat.sFormatstring)
&& (eLanguage == rNumFormat.eLanguage)
&& (eSysLanguage == rNumFormat.eSysLanguage));
}
- inline ScNumFormatAbbrev& operator=(const ScNumFormatAbbrev& rNumFormat)
+ ScNumFormatAbbrev& operator=(const ScNumFormatAbbrev& rNumFormat)
{
sFormatstring = rNumFormat.sFormatstring;
eLanguage = rNumFormat.eLanguage;
eSysLanguage = rNumFormat.eSysLanguage;
return *this;
}
- inline LanguageType GetLanguage() const { return eLanguage; }
+ LanguageType GetLanguage() const { return eLanguage; }
};
#endif