|
From: <ufo...@li...> - 2010-05-22 17:52:36
|
Revision: 1133
http://ufo2000.svn.sourceforge.net/ufo2000/?rev=1133&view=rev
Author: ssvb
Date: 2010-05-22 17:52:30 +0000 (Sat, 22 May 2010)
Log Message:
-----------
Rename function 'Connect::do_chat' -> 'Connect::do_version_check'
Because that is what it is actually doing.
From: Siarhei Siamashka <sia...@gm...>
Modified Paths:
--------------
trunk/src/connect.cpp
trunk/src/connect.h
trunk/src/multiplay.cpp
Modified: trunk/src/connect.cpp
===================================================================
--- trunk/src/connect.cpp 2010-05-19 00:18:16 UTC (rev 1132)
+++ trunk/src/connect.cpp 2010-05-22 17:52:30 UTC (rev 1133)
@@ -48,7 +48,7 @@
* @todo remove all the unneeded stuff here, this function does not need
* displaying any graphics at all
*/
-int Connect::do_chat()
+int Connect::do_version_check()
{
Wind *local_win = NULL, *remote_win = NULL, *info_win = NULL;
Modified: trunk/src/connect.h
===================================================================
--- trunk/src/connect.h 2010-05-19 00:18:16 UTC (rev 1132)
+++ trunk/src/connect.h 2010-05-22 17:52:30 UTC (rev 1133)
@@ -24,7 +24,7 @@
class Connect
{
public:
- int do_chat();
+ int do_version_check();
void reset_uds();
void swap_uds();
int do_planner(int F10ALLOWED, int map_change_allowed = 1);
Modified: trunk/src/multiplay.cpp
===================================================================
--- trunk/src/multiplay.cpp 2010-05-19 00:18:16 UTC (rev 1132)
+++ trunk/src/multiplay.cpp 2010-05-22 17:52:30 UTC (rev 1133)
@@ -137,7 +137,7 @@
alert(" ", _(" GAME START "), " ", _(" OK "), NULL, 1, 0);
inithotseatgame();
} else {
- if (!connect->do_chat() || !connect->do_planner(0)) {
+ if (!connect->do_version_check() || !connect->do_planner(0)) {
close();
return 0;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|