diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-02 11:00:41 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-02 12:19:01 +0100 |
commit | 884cbe174ee5e343e9ed56093421aad3e467bf57 (patch) | |
tree | bb62e25fe5d1768cc1f493634573eb22473d2944 /include/basic | |
parent | 11cc1afb2fd46c3dfdd519ad51c5fb2e7e3b7837 (diff) |
RID_* can be extern global variables
no need to access them via methods
Change-Id: If0d1a65d6f56ce2fc585749d974ba13c9f2749b2
Reviewed-on: https://gerrit.libreoffice.org/47245
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/basic')
-rw-r--r-- | include/basic/sbdef.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/basic/sbdef.hxx b/include/basic/sbdef.hxx index e79c58b6c071..7d677f1c9be6 100644 --- a/include/basic/sbdef.hxx +++ b/include/basic/sbdef.hxx @@ -68,7 +68,7 @@ enum class PropertyMode Set }; -BASIC_DLLPUBLIC const ErrMsgCode* getRID_BASIC_START(); +BASIC_DLLPUBLIC extern std::pair<const char*, ErrCode> const RID_BASIC_START[]; BASIC_DLLPUBLIC std::locale BasResLocale(); BASIC_DLLPUBLIC OUString BasResId(const char* pId); |