summaryrefslogtreecommitdiffstats
path: root/info.c
diff options
context:
space:
mode:
Diffstat (limited to 'info.c')
-rw-r--r--info.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/info.c b/info.c
index 0abee1c1b..4e0c3cadb 100644
--- a/info.c
+++ b/info.c
@@ -448,10 +448,15 @@ void update_time_depth(struct dive *dive, struct dive *edited)
dive->dc.meandepth.mm = edited->dc.meandepth.mm;
}
-int edit_dive_info(struct dive *dive, gboolean newdive)
+void add_people(const char *string)
{
- if (!dive || (!newdive && !amount_selected))
- return 0;
-
- return edit_multi_dive_info(dive);
+ /* add names to the completion list for people */
+}
+void add_location(const char *string)
+{
+ /* add names to the completion list for locations */
+}
+void add_suit(const char *string)
+{
+ /* add names to the completion list for suits */
}