wesnoth-cvs-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Wesnoth-cvs-commits] wesnoth/src filesystem.cpp


From: Guillaume Melquiond
Subject: [Wesnoth-cvs-commits] wesnoth/src filesystem.cpp
Date: Fri, 25 Mar 2005 12:09:06 -0500

CVSROOT:        /cvsroot/wesnoth
Module name:    wesnoth
Branch:         
Changes by:     Guillaume Melquiond <address@hidden>    05/03/25 17:09:06

Modified files:
        src            : filesystem.cpp 

Log message:
        Argh, a missing namespace qualifier.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/filesystem.cpp.diff?tr1=1.61&tr2=1.62&r1=text&r2=text

Patches:
Index: wesnoth/src/filesystem.cpp
diff -u wesnoth/src/filesystem.cpp:1.61 wesnoth/src/filesystem.cpp:1.62
--- wesnoth/src/filesystem.cpp:1.61     Fri Mar 25 16:10:08 2005
+++ wesnoth/src/filesystem.cpp  Fri Mar 25 17:09:06 2005
@@ -1,4 +1,4 @@
-/* $Id: filesystem.cpp,v 1.61 2005/03/25 16:10:08 silene Exp $ */
+/* $Id: filesystem.cpp,v 1.62 2005/03/25 17:09:06 silene Exp $ */
 /*
    Copyright (C) 2003 by David White <address@hidden>
    Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -501,7 +501,7 @@
        }
 #else
        if (!fname.empty() && fname[0] != '/' && !game_config::path.empty()) {
-               std::ifstream *s = new ifstream((game_config::path + "/" + 
fname).c_str());
+               std::ifstream *s = new std::ifstream((game_config::path + "/" + 
fname).c_str());
                if (s->is_open())
                        return s;
                delete s;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]