1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-19 19:53:53 +00:00

Mark constant methods const

This commit is contained in:
Evil Eye 2022-10-17 09:43:20 +02:00
parent 81f138cea0
commit a24e9e4c0a
3 changed files with 9 additions and 9 deletions

View file

@ -53,14 +53,14 @@ namespace MWBase
virtual bool startDialogue(const MWWorld::Ptr& actor, ResponseCallback* callback) = 0; virtual bool startDialogue(const MWWorld::Ptr& actor, ResponseCallback* callback) = 0;
virtual bool inJournal(const std::string& topicId, const std::string& infoId) = 0; virtual bool inJournal(const std::string& topicId, const std::string& infoId) const = 0;
virtual void addTopic(std::string_view topic) = 0; virtual void addTopic(std::string_view topic) = 0;
virtual void addChoice(std::string_view text, int choice) = 0; virtual void addChoice(std::string_view text, int choice) = 0;
virtual const std::vector<std::pair<std::string, int>>& getChoices() = 0; virtual const std::vector<std::pair<std::string, int>>& getChoices() const = 0;
virtual bool isGoodbye() = 0; virtual bool isGoodbye() const = 0;
virtual void goodbye() = 0; virtual void goodbye() = 0;

View file

@ -260,7 +260,7 @@ namespace MWDialogue
} }
} }
bool DialogueManager::inJournal(const std::string& topicId, const std::string& infoId) bool DialogueManager::inJournal(const std::string& topicId, const std::string& infoId) const
{ {
const MWDialogue::Topic* topicHistory = nullptr; const MWDialogue::Topic* topicHistory = nullptr;
MWBase::Journal* journal = MWBase::Environment::get().getJournal(); MWBase::Journal* journal = MWBase::Environment::get().getJournal();
@ -528,12 +528,12 @@ namespace MWDialogue
mChoices.emplace_back(text, choice); mChoices.emplace_back(text, choice);
} }
const std::vector<std::pair<std::string, int>>& DialogueManager::getChoices() const std::vector<std::pair<std::string, int>>& DialogueManager::getChoices() const
{ {
return mChoices; return mChoices;
} }
bool DialogueManager::isGoodbye() bool DialogueManager::isGoodbye() const
{ {
return mGoodbye; return mGoodbye;
} }

View file

@ -84,14 +84,14 @@ namespace MWDialogue
std::list<std::string> getAvailableTopics() override; std::list<std::string> getAvailableTopics() override;
int getTopicFlag(const std::string& topicId) const override; int getTopicFlag(const std::string& topicId) const override;
bool inJournal(const std::string& topicId, const std::string& infoId) override; bool inJournal(const std::string& topicId, const std::string& infoId) const override;
void addTopic(std::string_view topic) override; void addTopic(std::string_view topic) override;
void addChoice(std::string_view text, int choice) override; void addChoice(std::string_view text, int choice) override;
const std::vector<std::pair<std::string, int>>& getChoices() override; const std::vector<std::pair<std::string, int>>& getChoices() const override;
bool isGoodbye() override; bool isGoodbye() const override;
void goodbye() override; void goodbye() override;