diff options
Diffstat (limited to 'src/resources/iteminfo.h')
-rw-r--r-- | src/resources/iteminfo.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/resources/iteminfo.h b/src/resources/iteminfo.h index 063d82958..ebc267e15 100644 --- a/src/resources/iteminfo.h +++ b/src/resources/iteminfo.h @@ -261,6 +261,12 @@ class ItemInfo final bool isHaveIconColors() const A_WARN_UNUSED { return !mIconColorsListName.empty(); } + std::string getColorsListName() const A_WARN_UNUSED + { return mColorsListName; } + + std::string getIconColorsListName() const A_WARN_UNUSED + { return mIconColorsListName; } + const std::string replaceColors(std::string str, const ItemColor color) const A_WARN_UNUSED; |