summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-01-25 22:00:00 +0100
committerIra Rice <irarice@gmail.com>2009-01-25 18:14:53 -0700
commit50eae6ebe793295986071e748f3698154158d6cd (patch)
tree62bc29fc5a7fd641d4ef3ee919e182b6a3f35de4 /src/utils
parent537d390ae65e9b8a2701c04baa22962f7db0f093 (diff)
downloadMana-50eae6ebe793295986071e748f3698154158d6cd.tar.gz
Mana-50eae6ebe793295986071e748f3698154158d6cd.tar.bz2
Mana-50eae6ebe793295986071e748f3698154158d6cd.tar.xz
Mana-50eae6ebe793295986071e748f3698154158d6cd.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 399cb8c2..0b71fa50 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 6af5f1ca..2e08dd50 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 <string>