include/svx/DocumentColorHelper.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit ebd97f4b8c598f8982446aac06fbb45341d8c2cf Author: Caolán McNamara <[email protected]> AuthorDate: Wed Jan 24 10:02:47 2024 +0000 Commit: Caolán McNamara <[email protected]> CommitDate: Wed Jan 24 12:56:28 2024 +0100 make these inlines non-static Change-Id: Icf0f79b7673df1e147a57e796faf82dfd0e01b11 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162500 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/include/svx/DocumentColorHelper.hxx b/include/svx/DocumentColorHelper.hxx index 4e12733391a5..83884adcfa51 100644 --- a/include/svx/DocumentColorHelper.hxx +++ b/include/svx/DocumentColorHelper.hxx @@ -19,9 +19,9 @@ namespace svx { namespace DocumentColorHelper { -static inline Color getColorFromItem(const SvxColorItem* pItem) { return pItem->GetValue(); } +inline Color getColorFromItem(const SvxColorItem* pItem) { return pItem->GetValue(); } -static inline Color getColorFromItem(const SvxBrushItem* pItem) { return pItem->GetColor(); } +inline Color getColorFromItem(const SvxBrushItem* pItem) { return pItem->GetColor(); } template <class T> void queryColors(const sal_uInt16 nAttrib, const SfxItemPool* pPool, std::set<Color>& rOutput)
