diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-08-01 13:50:45 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-08-02 10:36:07 +0200 |
commit | 13fac4894f752e922727c6f22c6303712e06ba12 (patch) | |
tree | 5689829e917927bb13461d91988ec99e461f1831 /include/basic | |
parent | 13cadf3fe38daa0b4cfddcfa68ec8631bc85f44a (diff) |
normalize resource locale ctor construction mechanisms
make them all the same and share std::locales more
various OModuleClient, etc, classes go away
Change-Id: I7e3ff01a69332eeacd22e3078f66a60318de62d5
Reviewed-on: https://gerrit.libreoffice.org/40634
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/basic')
-rw-r--r-- | include/basic/basrdll.hxx | 2 | ||||
-rw-r--r-- | include/basic/sbdef.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/basic/basrdll.hxx b/include/basic/basrdll.hxx index 6c2fc4655122..e4e97ae65dbc 100644 --- a/include/basic/basrdll.hxx +++ b/include/basic/basrdll.hxx @@ -33,8 +33,6 @@ public: BasicDLL(); ~BasicDLL(); - const std::locale& GetBasResLocale() const; - static void BasicBreak(); static void EnableBreak( bool bEnable ); diff --git a/include/basic/sbdef.hxx b/include/basic/sbdef.hxx index 8df50e07678a..80513323f308 100644 --- a/include/basic/sbdef.hxx +++ b/include/basic/sbdef.hxx @@ -69,6 +69,8 @@ enum class PropertyMode }; BASIC_DLLPUBLIC const ErrMsgCode* getRID_BASIC_START(); +BASIC_DLLPUBLIC const std::locale& BasResLocale(); +BASIC_DLLPUBLIC OUString BasResId(const char* pId); #endif |