summaryrefslogtreecommitdiffstats
path: root/sc/inc
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2015-12-04 23:05:22 +0100
committerMatteo Casalin <matteo.casalin@yahoo.com>2015-12-27 16:51:27 +0100
commit672b31d516888f0f1cd0fbfdd3fafc430a233dcb (patch)
treed57a445e48f9c31a10152b6f9407f5b143ebc3ac /sc/inc
parentTranslate German comments (diff)
downloadcore-672b31d516888f0f1cd0fbfdd3fafc430a233dcb.tar.gz
core-672b31d516888f0f1cd0fbfdd3fafc430a233dcb.zip
Lnge to Language in ScNumFormatAbbrev member names
Change-Id: I226e857eb9c3d30a40dbe6afcc395b109e836674
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/zforauto.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/inc/zforauto.hxx b/sc/inc/zforauto.hxx
index 956daf108340..4e9be263cb0a 100644
--- a/sc/inc/zforauto.hxx
+++ b/sc/inc/zforauto.hxx
@@ -29,8 +29,8 @@ class SvNumberFormatter;
class ScNumFormatAbbrev
{
OUString sFormatstring;
- LanguageType eLnge;
- LanguageType eSysLnge;
+ LanguageType eLanguage;
+ LanguageType eSysLanguage;
public:
ScNumFormatAbbrev();
ScNumFormatAbbrev(const ScNumFormatAbbrev& aFormat);
@@ -42,17 +42,17 @@ public:
inline bool operator==(const ScNumFormatAbbrev& rNumFormat) const
{
return ((sFormatstring == rNumFormat.sFormatstring)
- && (eLnge == rNumFormat.eLnge)
- && (eSysLnge == rNumFormat.eSysLnge));
+ && (eLanguage == rNumFormat.eLanguage)
+ && (eSysLanguage == rNumFormat.eSysLanguage));
}
inline ScNumFormatAbbrev& operator=(const ScNumFormatAbbrev& rNumFormat)
{
sFormatstring = rNumFormat.sFormatstring;
- eLnge = rNumFormat.eLnge;
- eSysLnge = rNumFormat.eSysLnge;
+ eLanguage = rNumFormat.eLanguage;
+ eSysLanguage = rNumFormat.eSysLanguage;
return *this;
}
- inline LanguageType GetLanguage() const { return eLnge; }
+ inline LanguageType GetLanguage() const { return eLanguage; }
};
#endif