more svn:eol-style = native and header fixes
authorMathnerd314 <man.is.allan@gmail.com>
Fri, 19 Sep 2008 00:06:43 +0000 (00:06 +0000)
committerMathnerd314 <man.is.allan@gmail.com>
Fri, 19 Sep 2008 00:06:43 +0000 (00:06 +0000)
SVN-Revision: 5778

src/addon/addon.cpp
src/addon/addon.hpp
src/addon/addon_manager.cpp
src/addon/md5.hpp
src/object/lantern.hpp
src/object/magicblock.hpp
src/object/pushbutton.hpp
src/scripting/camera.hpp
src/scripting/squirrel_util.cpp
src/tinygettext/findlocale.cpp

index 4e8c9f6..3771161 100644 (file)
@@ -23,6 +23,9 @@
 #include <sstream>
 #include <stdexcept>
 #include <physfs.h>
+#include "lisp/lisp.hpp"
+#include "lisp/writer.hpp"
+#include "lisp/parser.hpp"
 #include "addon/addon.hpp"
 #include "addon/addon_manager.hpp"
 #include "log.hpp"
index a630435..a07be26 100644 (file)
 
 #include <string>
 #include <vector>
-#include "lisp/parser.hpp"
-#include "lisp/lisp.hpp"
-#include "lisp/writer.hpp"
 
-class Addon;
+namespace lisp {
+class Writer;
+class Lisp;
+}
 
 #include "addon/addon_manager.hpp"
 
index cf7ab80..9d45ae9 100644 (file)
 #include <sys/stat.h>
 #include <stdio.h>
 #include "addon/addon_manager.hpp"
+#include "addon/addon.hpp"
 #include "config.h"
 #include "log.hpp"
 #include "lisp/parser.hpp"
 #include "lisp/lisp.hpp"
 #include "lisp/list_iterator.hpp"
+#include "lisp/writer.hpp"
 #include "physfs/physfs_stream.hpp"
 
 #ifdef HAVE_LIBCURL
-#include <curl/curl.h>
-#include <curl/types.h>
-#include <curl/easy.h>
+#include <curl.h>
+#include <types.h>
+#include <easy.h>
 #endif
 
 #ifdef HAVE_LIBCURL
index 6d1e921..f6aa930 100644 (file)
@@ -41,6 +41,9 @@
 // documentation and/or software.
 // 
 
+#ifndef SUPERTUX_ADDON_MD5_HPP
+#define SUPERTUX_ADDON_MD5_HPP
+
 #include <stdio.h>
 #include <fstream>
 #include <iostream>
@@ -92,3 +95,5 @@ class MD5 {
     static inline void II(uint32_t& a, uint32_t b, uint32_t c, uint32_t d, uint32_t x, uint32_t s, uint32_t ac);
 
 };
+
+#endif /*SUPERTUX_ADDON_MD5_HPP*/
index b8498a3..7daed4b 100644 (file)
@@ -18,7 +18,7 @@
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
 #ifndef __SUPERTUX_LANTERN_H__
-#define __SUPERTUX_LANTERN_H___
+#define __SUPERTUX_LANTERN_H__
 
 #include "object/moving_sprite.hpp"
 #include "object/rock.hpp"
index 64d9add..43b0a18 100644 (file)
@@ -24,8 +24,8 @@
 //  along with this program; if not, write to the Free Software
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-#ifndef SUPERTUX_TRAMPOLINE_H
-#define SUPERTUX_TRAMPOLINE_H
+#ifndef SUPERTUX_MAGICBLOCK_H
+#define SUPERTUX_MAGICBLOCK_H
 
 #include "moving_sprite.hpp"
 #include "lisp/lisp.hpp"
index 55f3fc7..a615e85 100644 (file)
@@ -17,8 +17,8 @@
 //  along with this program; if not, write to the Free Software
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-#ifndef SUPERTUX_BUTTON_H
-#define SUPERTUX_BUTTON_H
+#ifndef SUPERTUX_PUSHBUTTON_H
+#define SUPERTUX_PUSHBUTTON_H
 
 #include "moving_sprite.hpp"
 #include "lisp/lisp.hpp"
index 558c207..9d65cf3 100644 (file)
@@ -23,6 +23,7 @@
 #ifndef SCRIPTING_API
 class Camera;
 typedef Camera _Camera;
+#include <string>
 #endif
 
 namespace Scripting
index e25887d..a5b1c1d 100644 (file)
@@ -31,7 +31,7 @@
 #include "log.hpp"
 #include "level.hpp"
 #include "physfs/physfs_stream.hpp"
-#include "../random_generator.hpp"
+#include "random_generator.hpp"
 
 #ifdef ENABLE_SQDBG
 #include <sqdbg/sqrdbg.h>
index dbcb961..2042b40 100644 (file)
@@ -182,7 +182,7 @@ canonize_fl(FL_Locale *l) {
 #define RML(pn,sn) MAKELANGID(LANG_##pn, SUBLANG_##sn)
 typedef struct {
   LANGID id;
-  char*  code;
+  const char* code;
 } IDToCode;
 static const IDToCode both_to_code[] = {
   {ML(ENGLISH,US),           "en_US.ISO_8859-1"},