diff options
author | Philipp Sehmisch <tmw@crushnet.org> | 2008-11-11 15:24:32 +0000 |
---|---|---|
committer | Philipp Sehmisch <tmw@crushnet.org> | 2008-11-11 15:24:32 +0000 |
commit | 12d50ac3bd08576ea23e00778463c3efa6b3a931 (patch) | |
tree | f86d214989c85615ff93dc8db51f354dcdc1f7a4 | |
parent | 9311774ad6c1a37f95bb2511251719d74426cbb0 (diff) | |
download | mana-12d50ac3bd08576ea23e00778463c3efa6b3a931.tar.gz mana-12d50ac3bd08576ea23e00778463c3efa6b3a931.tar.bz2 mana-12d50ac3bd08576ea23e00778463c3efa6b3a931.tar.xz mana-12d50ac3bd08576ea23e00778463c3efa6b3a931.zip |
Fixed two broken include paths
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/gui/skill.cpp | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2008-10-30 Philipp Sehmisch <tmw@crushnet.org> + + * src/gui/skil.cpp: fixed two broken include paths. + 2008-11-08 Bjørn Lindeijer <bjorn@lindeijer.nl> * src/utils/strprintf.cpp: Fixed compile error with GCC 4.4 reported diff --git a/src/gui/skill.cpp b/src/gui/skill.cpp index 116e1860..178abe1f 100644 --- a/src/gui/skill.cpp +++ b/src/gui/skill.cpp @@ -35,8 +35,8 @@ #include "../localplayer.h" #include "../utils/dtor.h" -#include "utils/xml.h" -#include "log.h" +#include "../utils/xml.h" +#include "../log.h" #define SKILLS_FILE "skills.xml" |