Increase various stack buffer sizes to accommodate for locale strings

Example:
For some strings such as the "Trip title" the buffer of 60 bytes was not
enought for certain languages.

Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Lubomir I. Ivanov 2012-10-18 00:43:47 +03:00 committed by Dirk Hohndel
parent 9e0a9884b8
commit 557a835765
2 changed files with 4 additions and 3 deletions

View file

@ -363,7 +363,8 @@ static void date_data_func(GtkTreeViewColumn *col,
int idx, nr;
struct tm tm;
timestamp_t when;
char buffer[60];
/* this should be enought for most languages. if not increase the value. */
char buffer[256];
gtk_tree_model_get(model, iter, DIVE_INDEX, &idx, DIVE_DATE, &when, -1);
nr = gtk_tree_model_iter_n_children(model, iter);