From fc0a23e52df27cebb156bc6a128e8b0ce272cfd8 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 12 Jul 2013 14:52:10 +0100 Subject: constify these methods Change-Id: I72173ef6cbea28afe9f349aa57a94cbfd537a851 --- include/svl/languageoptions.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include') 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 -- cgit