summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-01-25 22:00:00 +0100
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-01-25 22:00:00 +0100
commit45c59795a2fafd208bb7cdd52dc98a85f2377d2a (patch)
treef2b6813237728a9c488d58c99e4483ab31b51946 /src/utils
parent65da3d5cd5c8cf40abc1e6d31b04eada615fe307 (diff)
downloadmana-client-45c59795a2fafd208bb7cdd52dc98a85f2377d2a.tar.gz
mana-client-45c59795a2fafd208bb7cdd52dc98a85f2377d2a.tar.bz2
mana-client-45c59795a2fafd208bb7cdd52dc98a85f2377d2a.tar.xz
mana-client-45c59795a2fafd208bb7cdd52dc98a85f2377d2a.zip
Removed the TMW branding from header guards
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/base64.h6
-rw-r--r--src/utils/dtor.h4
-rw-r--r--src/utils/gettext.h4
-rw-r--r--src/utils/mutex.h6
-rw-r--r--src/utils/strprintf.h4
-rw-r--r--src/utils/tostring.h4
-rw-r--r--src/utils/trim.h4
-rw-r--r--src/utils/xml.h4
8 files changed, 18 insertions, 18 deletions
diff --git a/src/utils/base64.h b/src/utils/base64.h
index c802207b..92c23016 100644
--- a/src/utils/base64.h
+++ b/src/utils/base64.h
@@ -27,10 +27,10 @@
+----------------------------------------------------------------------+
*/
-#ifndef _TMW_BASE64_H
-#define _TMW_BASE64_H
+#ifndef BASE64_H
+#define BASE64_H
extern unsigned char *php3_base64_encode(const unsigned char *, int, int *);
extern unsigned char *php3_base64_decode(const unsigned char *, int, int *);
-#endif /* _TMW_BASE64_H */
+#endif /* BASE64_H */
diff --git a/src/utils/dtor.h b/src/utils/dtor.h
index 26f103b9..8dbc441f 100644
--- a/src/utils/dtor.h
+++ b/src/utils/dtor.h
@@ -19,8 +19,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#ifndef _TMW_UTILS_DTOR_H
-#define _TMW_UTILS_DTOR_H
+#ifndef UTILS_DTOR_H
+#define UTILS_DTOR_H
#include <algorithm>
#include <functional>
diff --git a/src/utils/gettext.h b/src/utils/gettext.h
index 74502bb0..5281d491 100644
--- a/src/utils/gettext.h
+++ b/src/utils/gettext.h
@@ -19,8 +19,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#ifndef _TMW_UTILS_GETTEXT_H
-#define _TMW_UTILS_GETTEXT_H
+#ifndef UTILS_GETTEXT_H
+#define UTILS_GETTEXT_H
#ifdef HAVE_CONFIG_H
#include "config.h"
diff --git a/src/utils/mutex.h b/src/utils/mutex.h
index 31e43e33..5e5df8f8 100644
--- a/src/utils/mutex.h
+++ b/src/utils/mutex.h
@@ -19,8 +19,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#ifndef TMW_MUTEX_H
-#define TMW_MUTEX_H
+#ifndef MUTEX_H
+#define MUTEX_H
#include <SDL_thread.h>
@@ -94,4 +94,4 @@ inline MutexLocker::~MutexLocker()
mMutex->unlock();
}
-#endif // TMW_MUTEX_H
+#endif // MUTEX_H
diff --git a/src/utils/strprintf.h b/src/utils/strprintf.h
index 98ef5065..78e7a04c 100644
--- a/src/utils/strprintf.h
+++ b/src/utils/strprintf.h
@@ -19,8 +19,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#ifndef _TMW_UTILS_STRPRINTF_H
-#define _TMW_UTILS_STRPRINTF_H
+#ifndef UTILS_STRPRINTF_H
+#define UTILS_STRPRINTF_H
#include <string>
diff --git a/src/utils/tostring.h b/src/utils/tostring.h
index 0c3b600f..5ac1d3aa 100644
--- a/src/utils/tostring.h
+++ b/src/utils/tostring.h
@@ -19,8 +19,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#ifndef _TMW_UTILS_TOSTRING_H
-#define _TMW_UTILS_TOSTRING_H
+#ifndef UTILS_TOSTRING_H
+#define UTILS_TOSTRING_H
#include <sstream>
diff --git a/src/utils/trim.h b/src/utils/trim.h
index 9d0d5600..b7474ac7 100644
--- a/src/utils/trim.h
+++ b/src/utils/trim.h
@@ -19,8 +19,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#ifndef _TMW_UTILS_TRIM_H_
-#define _TMW_UTILS_TRIM_H_
+#ifndef UTILS_TRIM_H
+#define UTILS_TRIM_H
#include <string>
diff --git a/src/utils/xml.h b/src/utils/xml.h
index b2f59c1a..76a63ff4 100644
--- a/src/utils/xml.h
+++ b/src/utils/xml.h
@@ -19,8 +19,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#ifndef _TMW_XML_H
-#define _TMW_XML_H
+#ifndef XML_H
+#define XML_H
#include <libxml/tree.h>