diff options
author | jandegr <jandegr@users.noreply.github.com> | 2016-03-06 13:15:53 +0100 |
---|---|---|
committer | jandegr <jandegr@users.noreply.github.com> | 2016-03-06 13:15:53 +0100 |
commit | 37c93602acbe502d523fa6293e0a7ab0f44bd502 (patch) | |
tree | 8b82206ba5429d6eff66c44f73229d6a25928eca /navit | |
parent | 0e89f54aa20ba3d612bd517a916b63fbbc8cdce3 (diff) | |
download | navit-37c93602acbe502d523fa6293e0a7ab0f44bd502.tar.gz |
typolayoutswitcher
Diffstat (limited to 'navit')
-rw-r--r-- | navit/navit.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/navit/navit.c b/navit/navit.c index 129164de0..d93302e3b 100644 --- a/navit/navit.c +++ b/navit/navit.c @@ -772,7 +772,7 @@ static GHashTable *cmd_attr_var_hash = NULL; * Store key value pair for the command system (for int typed values) * * @param navit The navit instance - * @param function unused (needed to match command function signiture) + * @param function unused (needed to match command function signature) * @param in input attributes in[0] is the key string, in[1] is the integer value to store * @param out output attributes, unused * @param valid unused @@ -801,7 +801,7 @@ navit_cmd_set_int_var(struct navit *this, char *function, struct attr **in, stru * Store key value pair for the command system (for attr typed values, can be used as opaque handles) * * @param navit The navit instance - * @param function unused (needed to match command function signiture) + * @param function unused (needed to match command function signature) * @param in input attributes in[0] is the key string, in[1] is the attr* value to store * @param out output attributes, unused * @param valid unused @@ -832,7 +832,7 @@ navit_cmd_set_attr_var(struct navit *this, char *function, struct attr **in, str * command to toggle the active state of a named layer of the current layout * * @param navit The navit instance - * @param function unused (needed to match command function signiture) + * @param function unused (needed to match command function signature) * @param in input attribute in[0] is the name of the layer * @param out output unused * @param valid unused @@ -861,7 +861,7 @@ navit_cmd_toggle_layer(struct navit *this, char *function, struct attr **in, str * adds an item with the current coordinate of the vehicle to a named map * * @param navit The navit instance - * @param function unused (needed to match command function signiture) + * @param function unused (needed to match command function signature) * @param in input attribute in[0] is the name of the map * @param out output attribute, 0 on error or the id of the created item on success * @param valid unused @@ -952,7 +952,7 @@ navit_cmd_map_add_curr_pos(struct navit *this, char *function, struct attr **in, * sets an attribute (name value pair) of a map item specified by map name and item id * * @param navit The navit instance - * @param function unused (needed to match command function signiture) + * @param function unused (needed to match command function signature) * @param in input attribute in[0] - name of the map ; in[1] - item ; in[2] - attr name ; in[3] - attr value * @param out output attribute, 0 on error, 1 on success * @param valid unused @@ -1017,7 +1017,7 @@ navit_cmd_map_item_set_attr(struct navit *this, char *function, struct attr **in * Get attr variable given a key string for the command system (for opaque usage) * * @param navit The navit instance - * @param function unused (needed to match command function signiture) + * @param function unused (needed to match command function signature) * @param in input attribute in[0] is the key string * @param out output attribute, the attr for the given key string if exists or NULL * @param valid unused @@ -1055,7 +1055,7 @@ navit_cmd_get_attr_var(struct navit *this, char *function, struct attr **in, str * Get value given a key string for the command system * * @param navit The navit instance - * @param function unused (needed to match command function signiture) + * @param function unused (needed to match command function signature) * @param in input attribute in[0] is the key string * @param out output attribute, the value for the given key string if exists or 0 * @param valid unused @@ -1094,7 +1094,7 @@ GList *cmd_int_var_stack = NULL; * Push an integer to the stack for the command system * * @param navit The navit instance - * @param function unused (needed to match command function signiture) + * @param function unused (needed to match command function signature) * @param in input attribute in[0] is the integer attibute to push * @param out output attributes, unused * @param valid unused @@ -1114,7 +1114,7 @@ navit_cmd_push_int(struct navit *this, char *function, struct attr **in, struct * Pop an integer from the command system's integer stack * * @param navit The navit instance - * @param function unused (needed to match command function signiture) + * @param function unused (needed to match command function signature) * @param in input attributes unused * @param out output attribute, the value popped if stack isn't empty or 0 * @param valid unused @@ -1142,7 +1142,7 @@ navit_cmd_pop_int(struct navit *this, char *function, struct attr **in, struct a * Get current size of command system's integer stack * * @param navit The navit instance - * @param function unused (needed to match command function signiture) + * @param function unused (needed to match command function signature) * @param in input attributes unused * @param out output attribute, the size of stack * @param valid unused @@ -1270,7 +1270,7 @@ navit_cmd_fmt_coordinates(struct navit *this, char *function, struct attr **in, * Join several string attributes into one * * @param navit The navit instance - * @param function unused (needed to match command function signiture) + * @param function unused (needed to match command function signature) * @param in input attributes in[0] - separator, in[1..] - attributes to join * @param out output attribute joined attribute as string * @param valid unused @@ -1307,7 +1307,7 @@ navit_cmd_strjoin(struct navit *this, char *function, struct attr **in, struct a * Call external program * * @param navit The navit instance - * @param function unused (needed to match command function signiture) + * @param function unused (needed to match command function signature) * @param in input attributes in[0] - name of executable, in[1..] - parameters * @param out output attribute unused * @param valid unused @@ -3449,9 +3449,9 @@ navit_layout_switch(struct navit *n) /** * @brief this command is used to change the layout and enable/disable the automatic layout switcher * - * @param navit The navit instance - * @param function unused (needed to match command function signiture) - * @param in input attributes in[0] - name of executable, in[1..] - parameters + * @param this_ The navit instance + * @param function unused + * @param in input attributes in[0], a string, see usage below * @param out output attribute unused * @param valid unused * |