Author: jhinrichs
Date: Sun Apr 12 23:23:56 2009
New Revision: 34831

URL: http://svn.gna.org/viewcvs/wesnoth?rev=34831&view=rev
Log:
minor corrections for savegame.cpp

Modified:
    trunk/src/savegame.cpp

Modified: trunk/src/savegame.cpp
URL: 
http://svn.gna.org/viewcvs/wesnoth/trunk/src/savegame.cpp?rev=34831&r1=34830&r2=34831&view=diff
==============================================================================
--- trunk/src/savegame.cpp (original)
+++ trunk/src/savegame.cpp Sun Apr 12 23:23:56 2009
@@ -150,7 +150,7 @@
                throw load_game_cancelled_exception();
 
        std::string error_log;
-       ::read_save_file(filename_, load_config_, &error_log);
+       read_save_file(filename_, load_config_, &error_log);
 
        if(!error_log.empty()) {
         try {
@@ -184,7 +184,7 @@
 void loadgame::read_save_file(const std::string& name, config& cfg, 
std::string* error_log)
 {
        std::string modified_name = name;
-       ::replace_space2underbar(modified_name);
+       replace_space2underbar(modified_name);
 
        // Try reading the file both with and without underscores
        scoped_istream file_stream = istream_file(get_saves_dir() + "/" + 
modified_name);


_______________________________________________
Wesnoth-commits mailing list
[email protected]
https://mail.gna.org/listinfo/wesnoth-commits

Reply via email to