diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-08-03 20:57:18 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-08-03 20:57:18 +0000 |
commit | 17f6b9c94401e694bd669f3a700d65d3a52c32d1 (patch) | |
tree | 20389feb762d2aed46d1853ebd2660da93e5e0cd | |
parent | b9311678decd29c6e3136524d8549893f42d2276 (diff) | |
download | mana-client-17f6b9c94401e694bd669f3a700d65d3a52c32d1.tar.gz mana-client-17f6b9c94401e694bd669f3a700d65d3a52c32d1.tar.bz2 mana-client-17f6b9c94401e694bd669f3a700d65d3a52c32d1.tar.xz mana-client-17f6b9c94401e694bd669f3a700d65d3a52c32d1.zip |
Removed an unneeded header.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/main.h | 1 | ||||
-rw-r--r-- | src/resources/buddylist.cpp | 1 |
3 files changed, 3 insertions, 1 deletions
@@ -11,6 +11,8 @@ system. Removed an now unused header. * src/game.cpp: Commented a switch case label that was left uncommented though the rest was commented. + * src/resources/buddylist.cpp, src/main.h: Removed unneeded header from + main.h, added it to buddylist.cpp. 2005-08-02 Andrej Sinicyn <andrej4000@gmail.com> @@ -26,7 +26,6 @@ #include "graphic/spriteset.h" #include "resources/image.h" -#include "configuration.h" #include "sound.h" #include <stdio.h> #include <memory> diff --git a/src/resources/buddylist.cpp b/src/resources/buddylist.cpp index 0c9f6c8b..6293bc84 100644 --- a/src/resources/buddylist.cpp +++ b/src/resources/buddylist.cpp @@ -23,6 +23,7 @@ #include "buddylist.h" #include "../main.h" +#include "../configuration.h" #include <iostream> #include <fstream> |