[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Wesnoth-cvs-commits] wesnoth/src multiplayer_connect.cpp
From: |
Philippe Plantier |
Subject: |
[Wesnoth-cvs-commits] wesnoth/src multiplayer_connect.cpp |
Date: |
Sun, 19 Sep 2004 15:17:01 -0400 |
CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Philippe Plantier <address@hidden> 04/09/19 19:10:27
Modified files:
src : multiplayer_connect.cpp
Log message:
Fixed a bug where leader selection combos were not cleared properly.
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/multiplayer_connect.cpp.diff?tr1=1.69&tr2=1.70&r1=text&r2=text
Patches:
Index: wesnoth/src/multiplayer_connect.cpp
diff -u wesnoth/src/multiplayer_connect.cpp:1.69
wesnoth/src/multiplayer_connect.cpp:1.70
--- wesnoth/src/multiplayer_connect.cpp:1.69 Sun Sep 19 18:41:35 2004
+++ wesnoth/src/multiplayer_connect.cpp Sun Sep 19 19:10:27 2004
@@ -1,4 +1,4 @@
-/* $Id: multiplayer_connect.cpp,v 1.69 2004/09/19 18:41:35 gruikya Exp $ */
+/* $Id: multiplayer_connect.cpp,v 1.70 2004/09/19 19:10:27 gruikya Exp $ */
/*
Copyright (C) 2003 by David White <address@hidden>
Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -44,7 +44,7 @@
show_replay_(false), save_(false), join_(join),
player_types_(), player_races_(), player_teams_(),
player_colors_(), combos_type_(), combos_race_(),
- combos_team_(), combos_color_(), sliders_gold_(),
+ combos_leader_(), combos_team_(), combos_color_(), sliders_gold_(),
ai_(gui::button(disp, _(" Computer vs Computer "))),
launch_(gui::button(disp, _("I'm Ready"))),
cancel_(gui::button(disp, _("Cancel"))),
@@ -791,6 +791,7 @@
{
combos_type_.clear();
combos_race_.clear();
+ combos_leader_.clear();
combos_team_.clear();
combos_color_.clear();
sliders_gold_.clear();