CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Guillaume Melquiond <[EMAIL PROTECTED]> 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 <[EMAIL PROTECTED]>
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;