Remove trailing white-space.

[ci skip]
This commit is contained in:
Wedge009 2019-08-26 04:20:57 +10:00
parent 8863f5370b
commit 9f40471099
2 changed files with 1 additions and 2 deletions

View file

@ -305,7 +305,7 @@ void mp_lobby::update_gamelist_diff()
if(game.display_status == mp::game_info::NEW) {
// call void do_notify(notify_mode mode, const std::string& sender, const std::string& message)
// sender will be the game_info.scenario (std::string) and message will be game_info.name (std::string)
// sender will be the game_info.scenario (std::string) and message will be game_info.name (std::string)
do_notify(mp::NOTIFY_GAME_CREATED, game.scenario, game.name);
LOG_LB << "Adding game to listbox " << game.id << "\n";

View file

@ -67,7 +67,6 @@ void game_created(const std::string & scenario, const std::string & name)
const std::string message = VGETTEXT("A game ($name|, $scenario|) has been created", {{"name", name}, {"scenario", scenario}});
desktop::notifications::send(_("Wesnoth"), message, desktop::notifications::OTHER);
}
}
void player_joins(bool is_lobby)