aboutsummaryrefslogtreecommitdiffstats
path: root/divelist-gtk.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2013-04-18 13:18:09 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-04-21 16:27:42 -0700
commite4a31e1e41d14526abb0f06d99898420851cc39f (patch)
tree40aab58404515c485c323c9198b050ad1eae8b63 /divelist-gtk.c
parentd25de98b7c76ffa2287754623c5f14f969aae80e (diff)
downloadsubsurface-e4a31e1e41d14526abb0f06d99898420851cc39f.tar.gz
Move creation of dive and dive trip date string into helper functions
This allows this code to easily be shared by Gtk and Qt UI. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'divelist-gtk.c')
-rw-r--r--divelist-gtk.c20
1 files changed, 4 insertions, 16 deletions
diff --git a/divelist-gtk.c b/divelist-gtk.c
index acb908a18..2f6e12de7 100644
--- a/divelist-gtk.c
+++ b/divelist-gtk.c
@@ -261,31 +261,19 @@ static void date_data_func(GtkTreeViewColumn *col,
struct tm tm;
timestamp_t when;
/* this should be enought for most languages. if not increase the value. */
- char buffer[256];
+ char *buffer;
gtk_tree_model_get(model, iter, DIVE_INDEX, &idx, DIVE_DATE, &when, -1);
nr = gtk_tree_model_iter_n_children(model, iter);
utc_mkdate(when, &tm);
if (idx < 0) {
- snprintf(buffer, sizeof(buffer),
- /*++GETTEXT 60 char buffer weekday, monthname, day of month, year, nr dives */
- ngettext("Trip %1$s, %2$s %3$d, %4$d (%5$d dive)",
- "Trip %1$s, %2$s %3$d, %4$d (%5$d dives)", nr),
- weekday(tm.tm_wday),
- monthname(tm.tm_mon),
- tm.tm_mday, tm.tm_year + 1900,
- nr);
+ buffer = get_trip_date_string(&tm, nr);
} else {
- snprintf(buffer, sizeof(buffer),
- /*++GETTEXT 60 char buffer weekday, monthname, day of month, year, hour:min */
- _("%1$s, %2$s %3$d, %4$d %5$02d:%6$02d"),
- weekday(tm.tm_wday),
- monthname(tm.tm_mon),
- tm.tm_mday, tm.tm_year + 1900,
- tm.tm_hour, tm.tm_min);
+ buffer = get_dive_date_string(&tm);
}
g_object_set(renderer, "text", buffer, NULL);
+ free(buffer);
}
static void depth_data_func(GtkTreeViewColumn *col,