Skip to content
Snippets Groups Projects
Commit dedd908c authored by Benedikt Meurer's avatar Benedikt Meurer
Browse files

2006-02-06 Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-properties-dialog.c(thunar_properties_dialog_update):
	  Use G_GINT64_FORMAT instead of "lld" as format for the file size.




(Old svn revision: 19759)
parent 9f491c61
No related branches found
No related tags found
No related merge requests found
2006-02-06 Benedikt Meurer <benny@xfce.org>
* thunar/thunar-properties-dialog.c(thunar_properties_dialog_update):
Use G_GINT64_FORMAT instead of "lld" as format for the file size.
2006-02-06 Benedikt Meurer <benny@xfce.org>
* Thunar.desktop.in: Add "GTK" to the Categories.
......
......@@ -764,7 +764,7 @@ thunar_properties_dialog_update (ThunarPropertiesDialog *dialog)
if (G_LIKELY (size_string != NULL))
{
size = thunar_file_get_size (dialog->file);
str = g_strdup_printf (_("%s (%lld Bytes)"), size_string, (gint64) size);
str = g_strdup_printf (_("%s (%" G_GINT64_FORMAT " Bytes)"), size_string, (gint64) size);
gtk_label_set_text (GTK_LABEL (dialog->size_label), str);
gtk_widget_show (dialog->size_label);
g_free (size_string);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment