]> mj.ucw.cz Git - leo.git/commitdiff
Clean up inclusion guards
authorMartin Mares <mj@ucw.cz>
Sun, 15 Jun 2014 19:02:20 +0000 (21:02 +0200)
committerMartin Mares <mj@ucw.cz>
Sun, 15 Jun 2014 19:02:20 +0000 (21:02 +0200)
TODO
css.h
dict.h
map.h
osm.h
shp.h
style.h
svg.h
sym.h

diff --git a/TODO b/TODO
index a291aa11470a94b23e253b31d458107e495e2125..925cf329d37f17e2b71945188882ea6b5e130353 100644 (file)
--- a/TODO
+++ b/TODO
@@ -3,18 +3,4 @@
   should override each other, but currently they are mixed upon rendering.
   Does it matter?
 - Fixing of label positions should include some margin
-- _BRUM_XXX_H -> _LEO_XXX_H
-
-- Interesting tags:
-amenity = kindergarten
-bridge = yes
-historic = archaeological_site
-place = islet
-railway = crossing
-railway = level_crossing
-tunnel = culvert
-tunnel = yes
-
-=== Opravit v OSM ===
-
-* RozliĆĄovat kostely a kaple
+- Clean up Makefile
diff --git a/css.h b/css.h
index d35c0b36156ee1509014516545003914997398a3..9344a639ed168d31a2c82bf99fd621b6d7d6ac1f 100644 (file)
--- a/css.h
+++ b/css.h
@@ -4,8 +4,8 @@
  *     (c) 2014 Martin Mares <mj@ucw.cz>
  */
 
-#ifndef _BRUM_CSS_H
-#define _BRUM_CSS_H
+#ifndef _LEO_CSS_H
+#define _LEO_CSS_H
 
 #include "osm.h"
 #include "style.h"
diff --git a/dict.h b/dict.h
index 57b94b13b3fc070799567cb0b0cefbf43ca60f30..f214bd7bf8be952c457841e3a9f6306e48278bd5 100644 (file)
--- a/dict.h
+++ b/dict.h
@@ -4,8 +4,8 @@
  *     (c) 2014 Martin Mares <mj@ucw.cz>
  */
 
-#ifndef _BRUM_DICT_H
-#define _BRUM_DICT_H
+#ifndef _LEO_DICT_H
+#define _LEO_DICT_H
 
 #include <ucw/gary.h>
 
diff --git a/map.h b/map.h
index 632e8d53febdb11cd0186b59eca787eaf428358f..eaad9b6a52ab2ba1b4244a0007b71e890501ad89 100644 (file)
--- a/map.h
+++ b/map.h
@@ -4,8 +4,8 @@
  *     (c) 2014 Martin Mares <mj@ucw.cz>
  */
 
-#ifndef _BRUM_MAP_H
-#define _BRUM_MAP_H
+#ifndef _LEO_MAP_H
+#define _LEO_MAP_H
 
 /* Map configuration */
 
diff --git a/osm.h b/osm.h
index 4eb90ef4b0a09738da628ad9342c49b1a7be0f0c..80d9fd2df47b33470039f8fe87876813c6e24d67 100644 (file)
--- a/osm.h
+++ b/osm.h
@@ -4,8 +4,8 @@
  *     (c) 2014 Martin Mares <mj@ucw.cz>
  */
 
-#ifndef _BRUM_OSM_H
-#define _BRUM_OSM_H
+#ifndef _LEO_OSM_H
+#define _LEO_OSM_H
 
 #include "dict.h"
 
diff --git a/shp.h b/shp.h
index febd3957333287a66b85602a588c547033c20faf..67089d9bb0ca5b00e4ccd58f6d0092c55d6ba169 100644 (file)
--- a/shp.h
+++ b/shp.h
@@ -4,8 +4,8 @@
  *     (c) 2014 Martin Mares <mj@ucw.cz>
  */
 
-#ifndef _BRUM_SHP_H
-#define _BRUM_SHP_H
+#ifndef _LEO_SHP_H
+#define _LEO_SHP_H
 
 void shp_parse(const char *name);
 
diff --git a/style.h b/style.h
index b8509f13e15f7fb9bd31ee3f2df5c8145b361a11..83508cfce5eaa53e39558f30a9e1e3af01ee6cd4 100644 (file)
--- a/style.h
+++ b/style.h
@@ -4,8 +4,8 @@
  *     (c) 2014 Martin Mares <mj@ucw.cz>
  */
 
-#ifndef _BRUM_STYLE_H
-#define _BRUM_STYLE_H
+#ifndef _LEO_STYLE_H
+#define _LEO_STYLE_H
 
 #include "osm.h"
 #include "dict.h"
diff --git a/svg.h b/svg.h
index 09f8bd3be6fdee7b0ff52f2dc80b60cfa36cbc78..c9520c44bd5e7f326cb56da50584b68e0acb8c6f 100644 (file)
--- a/svg.h
+++ b/svg.h
@@ -4,8 +4,8 @@
  *     (c) 2014 Martin Mares <mj@ucw.cz>
  */
 
-#ifndef _BRUM_SVG_H
-#define _BRUM_SVG_H
+#ifndef _LEO_SVG_H
+#define _LEO_SVG_H
 
 // FIXME: Passing SVG pointers everywhere is ugly, using global context less so.
 
diff --git a/sym.h b/sym.h
index 7c4e97be0702c7c06c684b60cca715b616b7ecf1..e846a790df44b6205416111feef6e691476fe5ed 100644 (file)
--- a/sym.h
+++ b/sym.h
@@ -4,8 +4,8 @@
  *     (c) 2014 Martin Mares <mj@ucw.cz>
  */
 
-#ifndef _BRUM_SYM_H
-#define _BRUM_SYM_H
+#ifndef _LEO_SYM_H
+#define _LEO_SYM_H
 
 #include "osm.h"
 #include "style.h"