diff options
author | rbuj <[email protected]> | 2019-09-01 20:41:47 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-09-10 21:19:07 +0200 |
commit | 29b945fd67d1e7eb93cfe66d089977d064c7f7bc (patch) | |
tree | ecdeac447d0b8ccef586b3e68a2d7f52fd54d81f | |
parent | 758b9d3a9587816b0a6837fdc8dcb3bf1c33dea9 (diff) | |
download | engrampa-29b945fd67d1e7eb93cfe66d089977d064c7f7bc.tar.bz2 engrampa-29b945fd67d1e7eb93cfe66d089977d064c7f7bc.tar.xz |
glib-utils: Remove get_time_string()
get_time_string() is a local function that wraps strftime().
In contrast to strftime(), g_date_time_format() always produces
an UTF-8 string, regardless of the current locale.
-rw-r--r-- | src/dlg-prop.c | 5 | ||||
-rw-r--r-- | src/fr-window.c | 15 | ||||
-rw-r--r-- | src/glib-utils.c | 21 | ||||
-rw-r--r-- | src/glib-utils.h | 1 |
4 files changed, 15 insertions, 27 deletions
diff --git a/src/dlg-prop.c b/src/dlg-prop.c index 5230647..86762f6 100644 --- a/src/dlg-prop.c +++ b/src/dlg-prop.c @@ -135,7 +135,10 @@ dlg_prop (FrWindow *window) set_label (label_label, _("Last modified:")); label = _gtk_builder_get_widget (data->builder, "p_date_label"); - s = get_time_string (get_file_mtime (fr_window_get_archive_uri (window))); + GDateTime *date_time; + date_time = g_date_time_new_from_unix_local (get_file_mtime (fr_window_get_archive_uri (window))); + s = g_date_time_format (date_time, _("%d %B %Y, %H:%M")); + g_date_time_unref (date_time); gtk_label_set_text (GTK_LABEL (label), s); g_free (s); diff --git a/src/fr-window.c b/src/fr-window.c index 9692aac..f537fef 100644 --- a/src/fr-window.c +++ b/src/fr-window.c @@ -1601,10 +1601,14 @@ fr_window_populate_file_list (FrWindow *window, s_size = g_format_size (fdata->dir_size); - if (fdata->list_dir) + if (fdata->list_dir) { s_time = g_strdup (""); - else - s_time = get_time_string (fdata->modified); + } else { + GDateTime *date_time; + date_time = g_date_time_new_from_unix_local (fdata->modified); + s_time = g_date_time_format (date_time, _("%d %B %Y, %H:%M")); + g_date_time_unref (date_time); + } gtk_list_store_set (window->priv->list_store, &iter, COLUMN_FILE_DATA, fdata, @@ -1621,6 +1625,7 @@ fr_window_populate_file_list (FrWindow *window, g_free (s_time); } else { + GDateTime *date_time; char *utf8_path; char *s_size; char *s_time; @@ -1629,7 +1634,9 @@ fr_window_populate_file_list (FrWindow *window, utf8_path = g_filename_display_name (fdata->path); s_size = g_format_size (fdata->size); - s_time = get_time_string (fdata->modified); + date_time = g_date_time_new_from_unix_local (fdata->modified); + s_time = g_date_time_format (date_time, _("%d %B %Y, %H:%M")); + g_date_time_unref (date_time); desc = g_content_type_get_description (fdata->content_type); gtk_list_store_set (window->priv->list_store, &iter, diff --git a/src/glib-utils.c b/src/glib-utils.c index 1d90489..9768627 100644 --- a/src/glib-utils.c +++ b/src/glib-utils.c @@ -547,27 +547,6 @@ debug (const char *file, } -char * -get_time_string (time_t time) -{ - struct tm *tm; - char s_time[256]; - char *locale_format = NULL; - char *time_utf8; - - tm = localtime (&time); - /* This is the time format used in the "Date Modified" column and - * in the Properties dialog. See the man page of strftime for an - * explanation of the values. */ - locale_format = g_locale_from_utf8 (_("%d %B %Y, %H:%M"), -1, NULL, NULL, NULL); - strftime (s_time, sizeof (s_time) - 1, locale_format, tm); - g_free (locale_format); - time_utf8 = g_locale_to_utf8 (s_time, -1, NULL, NULL, NULL); - - return time_utf8; -} - - void g_ptr_array_free_full (GPtrArray *array, GFunc free_func, diff --git a/src/glib-utils.h b/src/glib-utils.h index 59a327f..674a17e 100644 --- a/src/glib-utils.h +++ b/src/glib-utils.h @@ -65,7 +65,6 @@ char ** split_line (const char *line, const char * get_last_field (const char *line, int last_field); int n_fields (char **str_array); -char * get_time_string (time_t time); void g_ptr_array_free_full (GPtrArray *array, GFunc func, gpointer user_data); |