diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-07-12 14:52:10 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-07-12 15:08:29 +0100 |
commit | fc0a23e52df27cebb156bc6a128e8b0ce272cfd8 (patch) | |
tree | 259fddf4357cbc09fd434c9511342231d20d4060 /include | |
parent | d75dd80abb28cdb126a12840597d0384dd43897e (diff) |
constify these methods
Change-Id: I72173ef6cbea28afe9f349aa57a94cbfd537a851
Diffstat (limited to 'include')
-rw-r--r-- | include/svl/languageoptions.hxx | 8 |
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 |