CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Guillaume Melquiond <[EMAIL PROTECTED]> 05/03/25 19:34:39
Modified files:
src : theme.hpp
Log message:
Remove unexpected qualifier.
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/theme.hpp.diff?tr1=1.7&tr2=1.8&r1=text&r2=text
Patches:
Index: wesnoth/src/theme.hpp
diff -u wesnoth/src/theme.hpp:1.7 wesnoth/src/theme.hpp:1.8
--- wesnoth/src/theme.hpp:1.7 Fri Mar 25 18:52:55 2005
+++ wesnoth/src/theme.hpp Fri Mar 25 19:34:39 2005
@@ -4,7 +4,6 @@
#include <map>
#include <string>
#include <vector>
-#include <map>
class config;
@@ -137,7 +136,7 @@
static std::vector<std::string> get_known_themes();
private:
- static std::map<std::string, config> theme::known_themes;
+ static std::map<std::string, config> known_themes;
std::string cur_theme;
const config& cfg_;
std::vector<panel> panels_;