Remove unused parameters.

This commit is contained in:
Guillaume Melquiond 2004-11-28 11:46:57 +00:00
parent 3d07492836
commit c75033c9a2
2 changed files with 8 additions and 10 deletions

View file

@ -54,11 +54,10 @@ void report::add_image(const std::string& image, const std::string& tooltip) {
}
report generate_report(TYPE type, const gamemap& map, const unit_map& units,
const std::vector<team>& teams,
const team& current_team, int current_side, int playing_side,
const gamemap::location& loc, const gamemap::location& mouseover,
const gamestatus& status, const std::set<std::string>& observers,
const std::string* format_string)
const std::vector<team>& teams, const team& current_team,
int current_side, int playing_side,
const gamemap::location& loc, const gamemap::location& mouseover,
const gamestatus& status, const std::set<std::string>& observers)
{
unit_map::const_iterator u = units.end();

View file

@ -60,11 +60,10 @@ namespace reports {
};
report generate_report(TYPE type, const gamemap& map, const unit_map& units,
const std::vector<team>& teams,
const team& current_team, int current_side, int active_side,
const gamemap::location& loc, const gamemap::location& mouseover,
const gamestatus& status, const std::set<std::string>& observers,
const std::string* format_string=NULL);
const std::vector<team>& teams, const team& current_team,
int current_side, int active_side,
const gamemap::location& loc, const gamemap::location& mouseover,
const gamestatus& status, const std::set<std::string>& observers);
// Set what will be shown for the report with type
// which_report. Note that this only works for some reports,
// i.e. reports that can not be deducted from the supplied arguments