mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-31 18:45:36 +00:00
Mark constant methods const
This commit is contained in:
parent
53c03b65cf
commit
d6fcf54438
3 changed files with 9 additions and 9 deletions
|
@ -54,14 +54,14 @@ namespace MWBase
|
|||
|
||||
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 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;
|
||||
|
||||
|
|
|
@ -257,7 +257,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;
|
||||
MWBase::Journal *journal = MWBase::Environment::get().getJournal();
|
||||
|
@ -524,12 +524,12 @@ namespace MWDialogue
|
|||
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;
|
||||
}
|
||||
|
||||
bool DialogueManager::isGoodbye()
|
||||
bool DialogueManager::isGoodbye() const
|
||||
{
|
||||
return mGoodbye;
|
||||
}
|
||||
|
|
|
@ -85,14 +85,14 @@ namespace MWDialogue
|
|||
std::list<std::string> getAvailableTopics() 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 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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue