diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-19 13:18:49 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-08-05 09:39:11 +0200 |
commit | 14cfff500e93f0d6cbf8412065feea85c01ea81d (patch) | |
tree | 76e3fb8fbf2b0d8a12c8406d8cf994ea6a37aaff /include/svl | |
parent | d924ce30e0ca260682bd2aed192b8b1b2ca3e7c0 (diff) |
Pass context and resource string down to boost::locale separately
because this is often on a hot path, and we can avoid the splitting and
joining of strings like this.
Change-Id: Ia36047209368ca53431178c2e8723a18cfe8260a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119220
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svl')
-rw-r--r-- | include/svl/svl.hrc | 2 | ||||
-rw-r--r-- | include/svl/svlresid.hxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/svl/svl.hrc b/include/svl/svl.hrc index 231d26c0f3b5..f1f60756c301 100644 --- a/include/svl/svl.hrc +++ b/include/svl/svl.hrc @@ -19,7 +19,7 @@ #ifndef INCLUDED_SVL_SVL_HRC #define INCLUDED_SVL_SVL_HRC -#define NC_(Context, String) reinterpret_cast<char const *>(Context "\004" u8##String) +#define NC_(Context, String) TranslateId(Context, reinterpret_cast<char const *>(u8##String)) // Internet Media Type Presentations diff --git a/include/svl/svlresid.hxx b/include/svl/svlresid.hxx index 5e6f271ea7a1..5b57aa2c0c52 100644 --- a/include/svl/svlresid.hxx +++ b/include/svl/svlresid.hxx @@ -12,9 +12,9 @@ #include <svl/svldllapi.h> #include <rtl/ustring.hxx> -#include <string_view> +#include <unotools/resmgr.hxx> -SVL_DLLPUBLIC OUString SvlResId(std::string_view aId); +SVL_DLLPUBLIC OUString SvlResId(TranslateId sContextAndId); #endif // INCLUDED_SVL_SVTRESID_HXX |