impr: Remove the word "Provider" from places where it doesn't fit

This commit is contained in:
WerWolv
2025-01-04 13:28:35 +01:00
parent 635a825095
commit 8da69c11d9
16 changed files with 28 additions and 28 deletions

View File

@@ -87,7 +87,7 @@ public:
void setTypeName(std::string typeName) { m_typeName = std::move(typeName);}
void setName(std::string name) { m_name = std::move(name);}
[[nodiscard]] std::string getTypeName() const override { return m_typeName; }
[[nodiscard]] hex::UnlocalizedString getTypeName() const override { return m_typeName; }
[[nodiscard]] std::string getName() const override { return m_name; }
private: