Skip to content

Commit 5a5854e

Browse files
committedFeb 21, 2015
Move hex.h to util/
1 parent c09d026 commit 5a5854e

File tree

6 files changed

+14
-15
lines changed

6 files changed

+14
-15
lines changed
 

‎src/clientmedia.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,20 @@ with this program; if not, write to the Free Software Foundation, Inc.,
1818
*/
1919

2020
#include "clientmedia.h"
21-
#include "util/serialize.h"
22-
#include "util/sha1.h"
23-
#include "util/string.h"
2421
#include "httpfetch.h"
2522
#include "client.h"
26-
#include "network/networkprotocol.h"
2723
#include "filecache.h"
2824
#include "filesys.h"
29-
#include "hex.h"
3025
#include "debug.h"
3126
#include "log.h"
3227
#include "porting.h"
3328
#include "settings.h"
3429
#include "main.h"
30+
#include "network/networkprotocol.h"
31+
#include "util/hex.h"
32+
#include "util/serialize.h"
33+
#include "util/sha1.h"
34+
#include "util/string.h"
3535

3636
static std::string getMediaCacheDir()
3737
{

‎src/guiFormSpecMenu.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
3939
#include "log.h"
4040
#include "tile.h" // ITextureSource
4141
#include "hud.h" // drawItemStack
42-
#include "hex.h"
43-
#include "util/string.h"
44-
#include "util/numeric.h"
4542
#include "filesys.h"
4643
#include "gettime.h"
4744
#include "gettext.h"
@@ -50,8 +47,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
5047
#include "main.h"
5148
#include "settings.h"
5249
#include "client.h"
53-
#include "util/string.h" // for parseColorString()
5450
#include "fontengine.h"
51+
#include "util/hex.h"
52+
#include "util/numeric.h"
53+
#include "util/string.h" // for parseColorString()
5554

5655
#define MY_CHECKPOS(a,b) \
5756
if (v_pos.size() != 2) { \

‎src/keycode.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
2222
#include "exceptions.h"
2323
#include "settings.h"
2424
#include "log.h"
25-
#include "hex.h"
2625
#include "debug.h"
26+
#include "util/hex.h"
2727

2828
class UnknownKeycode : public BaseException
2929
{

‎src/server.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,18 @@ with this program; if not, write to the Free Software Foundation, Inc.,
5151
#include "content_abm.h"
5252
#include "content_sao.h"
5353
#include "mods.h"
54-
#include "util/sha1.h"
55-
#include "util/base64.h"
5654
#include "sound.h" // dummySoundManager
5755
#include "event_manager.h"
58-
#include "hex.h"
5956
#include "serverlist.h"
6057
#include "util/string.h"
6158
#include "util/mathconstants.h"
6259
#include "rollback.h"
6360
#include "util/serialize.h"
6461
#include "util/thread.h"
6562
#include "defaultsettings.h"
63+
#include "util/base64.h"
64+
#include "util/sha1.h"
65+
#include "util/hex.h"
6666

6767
class ClientNotFoundException : public BaseException
6868
{

‎src/hex.h ‎src/util/hex.h

File renamed without changes.

‎src/util/string.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ with this program; if not, write to the Free Software Foundation, Inc.,
2222
#include "numeric.h"
2323
#include "log.h"
2424

25-
#include "sha1.h"
2625
#include "base64.h"
27-
#include "../hex.h"
26+
#include "hex.h"
27+
#include "sha1.h"
2828
#include "../porting.h"
2929

3030
#include <algorithm>

0 commit comments

Comments
 (0)
Please sign in to comment.