summaryrefslogtreecommitdiff
path: root/navit/map
diff options
context:
space:
mode:
authorsleske <sleske@ffa7fe5e-494d-0410-b361-a75ebd5db220>2014-05-29 13:35:39 +0000
committersleske <sleske@ffa7fe5e-494d-0410-b361-a75ebd5db220>2014-05-29 13:35:39 +0000
commit4fed9438255db32f7049f77c2eb9a192d371ee3d (patch)
treeea222ae78f518be2edad7ddd71a459d007446005 /navit/map
parente97c3daba316bccdf74b2b77a7c95e3a69b91cf6 (diff)
downloadnavit-4fed9438255db32f7049f77c2eb9a192d371ee3d.tar.gz
Refactor:core:Add some Doxygen comments.
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@5781 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'navit/map')
-rw-r--r--navit/map/binfile/binfile.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/navit/map/binfile/binfile.c b/navit/map/binfile/binfile.c
index 69483ab6c..0b18c5b99 100644
--- a/navit/map/binfile/binfile.c
+++ b/navit/map/binfile/binfile.c
@@ -161,14 +161,14 @@ struct map_rect_priv {
* when starting a search, and is used for retrieving results.
*/
struct map_search_priv {
- struct map_priv *map;
- struct map_rect_priv *mr;
+ struct map_priv *map; /**< Map to search in. */
+ struct map_rect_priv *mr; /**< Map rectangle to search inside. */
struct map_rect_priv *mr_item;
struct item *item;
- struct attr search;
+ struct attr search; /**< Attribute specifying what to search for. */
struct map_selection ms;
GList *boundaries;
- int partial;
+ int partial; /**< Find partial matches? */
int mode;
struct coord_rect rect_new;
char *parent_name;