summaryrefslogtreecommitdiff
path: root/include/svl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-07-12 14:52:10 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-07-12 15:08:29 +0100
commitfc0a23e52df27cebb156bc6a128e8b0ce272cfd8 (patch)
tree259fddf4357cbc09fd434c9511342231d20d4060 /include/svl
parentd75dd80abb28cdb126a12840597d0384dd43897e (diff)
constify these methods
Change-Id: I72173ef6cbea28afe9f349aa57a94cbfd537a851
Diffstat (limited to 'include/svl')
-rw-r--r--include/svl/languageoptions.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svl/languageoptions.hxx b/include/svl/languageoptions.hxx
index c9700e64799d..08a28e504f17 100644
--- a/include/svl/languageoptions.hxx
+++ b/include/svl/languageoptions.hxx
@@ -98,7 +98,7 @@ class SVL_DLLPUBLIC SvtSystemLanguageOptions : public utl::ConfigItem
private:
OUString m_sWin16SystemLocale;
- bool isKeyboardLayoutTypeInstalled(sal_Int16 scriptType);
+ bool isKeyboardLayoutTypeInstalled(sal_Int16 scriptType) const;
public:
SvtSystemLanguageOptions();
@@ -107,10 +107,10 @@ public:
virtual void Commit();
virtual void Notify( const com::sun::star::uno::Sequence< OUString >& rPropertyNames );
- LanguageType GetWin16SystemLanguage();
+ LanguageType GetWin16SystemLanguage() const;
- bool isCTLKeyboardLayoutInstalled();
- bool isCJKKeyboardLayoutInstalled();
+ bool isCTLKeyboardLayoutInstalled() const;
+ bool isCJKKeyboardLayoutInstalled() const;
};
#endif // _SVTOOLS_LANGUAGEOPTIONS_HXX