diff options
author | woglinde <woglinde@ffa7fe5e-494d-0410-b361-a75ebd5db220> | 2012-02-18 20:38:25 +0000 |
---|---|---|
committer | woglinde <woglinde@ffa7fe5e-494d-0410-b361-a75ebd5db220> | 2012-02-18 20:38:25 +0000 |
commit | 7a847601f79b7e67921033c729133a9f9fd7ee15 (patch) | |
tree | b8d30cfeae9b8416fba6be1b740baf562fe788be /navit | |
parent | 783095c2c6bb09ef3db742a2dc5893b030300739 (diff) | |
download | navit-7a847601f79b7e67921033c729133a9f9fd7ee15.tar.gz |
Fix:core: do not exposure the map text file headr stuff into navit.c
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@4939 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'navit')
-rw-r--r-- | navit/map/textfile/textfile.h | 1 | ||||
-rw-r--r-- | navit/navit.c | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/navit/map/textfile/textfile.h b/navit/map/textfile/textfile.h index 929cfd768..75e5401f2 100644 --- a/navit/map/textfile/textfile.h +++ b/navit/map/textfile/textfile.h @@ -22,7 +22,6 @@ #include "coord.h" #define TEXTFILE_COMMENT_CHAR '#' -#define TEXTFILE_COMMENT_NAVI_STOPPED "# navigation stopped\n" struct map_priv { int id; diff --git a/navit/navit.c b/navit/navit.c index 1bff73ed2..183d23cee 100644 --- a/navit/navit.c +++ b/navit/navit.c @@ -76,8 +76,8 @@ #include "libc.h" #endif -/*FIXME: don't include pvt textfile map includes here */ -#include "map/textfile/textfile.h" +/* define string for bookmark handling */ +#define TEXTFILE_COMMENT_NAVI_STOPPED "# navigation stopped\n" /** * @defgroup navit the navit core instance. navit is the object containing nearly everything: A set of maps, one or more vehicle, a graphics object for rendering the map, a gui object for displaying the user interface, a route object, a navigation object and so on. Be warned that it is theoretically possible to have more than one navit object |