forked from teamnwah/openmw-tes3coop
Changed name of function use to set birth sign in stats window.
This commit is contained in:
parent
cf20233d7e
commit
9a0aea1718
4 changed files with 6 additions and 6 deletions
|
@ -89,7 +89,7 @@ void StatsWindow::setFactions (const std::vector<Faction>& factions)
|
||||||
this->factions = factions;
|
this->factions = factions;
|
||||||
}
|
}
|
||||||
|
|
||||||
void StatsWindow::configureBirthSign (const std::string& signId)
|
void StatsWindow::setBirthSign (const std::string& signId)
|
||||||
{
|
{
|
||||||
birthSignId = signId;
|
birthSignId = signId;
|
||||||
}
|
}
|
||||||
|
|
|
@ -308,7 +308,7 @@ namespace MWGui
|
||||||
|
|
||||||
void configureSkills (const std::set<int>& major, const std::set<int>& minor, const std::set<int>& misc);
|
void configureSkills (const std::set<int>& major, const std::set<int>& minor, const std::set<int>& misc);
|
||||||
void setFactions (const std::vector<Faction>& factions);
|
void setFactions (const std::vector<Faction>& factions);
|
||||||
void configureBirthSign (const std::string &signId);
|
void setBirthSign (const std::string &signId);
|
||||||
void setReputation (int reputation) { this->reputation = reputation; }
|
void setReputation (int reputation) { this->reputation = reputation; }
|
||||||
void setBounty (int bounty) { this->bounty = bounty; }
|
void setBounty (int bounty) { this->bounty = bounty; }
|
||||||
void updateSkillArea();
|
void updateSkillArea();
|
||||||
|
|
|
@ -181,9 +181,9 @@ void WindowManager::setFactions (const FactionList& factions)
|
||||||
stats->setFactions (factions);
|
stats->setFactions (factions);
|
||||||
}
|
}
|
||||||
|
|
||||||
void WindowManager::configureBirthSign (const std::string &signId)
|
void WindowManager::setBirthSign (const std::string &signId)
|
||||||
{
|
{
|
||||||
stats->configureBirthSign (signId);
|
stats->setBirthSign (signId);
|
||||||
}
|
}
|
||||||
|
|
||||||
void WindowManager::setReputation (int reputation)
|
void WindowManager::setReputation (int reputation)
|
||||||
|
|
|
@ -150,8 +150,8 @@ namespace MWGui
|
||||||
void setFactions (const FactionList& factions);
|
void setFactions (const FactionList& factions);
|
||||||
///< set faction and rank to display on stat window, use an empty vector to disable
|
///< set faction and rank to display on stat window, use an empty vector to disable
|
||||||
|
|
||||||
void configureBirthSign (const std::string &signId);
|
void setBirthSign (const std::string &signId);
|
||||||
///< configure birth sign to display on stat window, use an empty string to disable.
|
///< set birth sign to display on stat window, use an empty string to disable.
|
||||||
|
|
||||||
void setReputation (int reputation);
|
void setReputation (int reputation);
|
||||||
///< set the current reputation value
|
///< set the current reputation value
|
||||||
|
|
Loading…
Reference in a new issue