summaryrefslogtreecommitdiff
path: root/baobab/src/baobab.c
diff options
context:
space:
mode:
authorLaurent Napias <[email protected]>2019-06-29 11:57:35 +0200
committerZenWalker <[email protected]>2019-07-04 15:07:12 +0200
commit61b94ba9a4953aba56764dac7e0f8751aaa11571 (patch)
treec9097e01f74035b305fd47190a7f0d1bb1eb188e /baobab/src/baobab.c
parent34505eb50fb6f3b49c8ef08d59bcef4f6f27f6cf (diff)
downloadmate-utils-61b94ba9a4953aba56764dac7e0f8751aaa11571.tar.bz2
mate-utils-61b94ba9a4953aba56764dac7e0f8751aaa11571.tar.xz
Remove trailing whitespaces
Diffstat (limited to 'baobab/src/baobab.c')
-rw-r--r--baobab/src/baobab.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/baobab/src/baobab.c b/baobab/src/baobab.c
index 36de4256..5a30948c 100644
--- a/baobab/src/baobab.c
+++ b/baobab/src/baobab.c
@@ -177,7 +177,7 @@ update_scan_label (void)
total = g_format_size (baobab.fs.total);
used = g_format_size (baobab.fs.used);
available = g_format_size (baobab.fs.avail);
-
+
/* Translators: these are labels for disk space */
markup = g_markup_printf_escaped ("<small>%s <b>%s</b> (%s %s %s %s )</small>",
_("Total filesystem capacity:"), total,
@@ -402,9 +402,9 @@ first_row (void)
gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (baobab.tree_view), FALSE);
gtk_tree_store_append (baobab.model, &firstiter, &root_iter);
-
+
size = g_format_size (baobab.fs.used);
-
+
if (baobab.fs.total == 0 && baobab.fs.used == 0) {
perc = 100.0;
} else {
@@ -452,7 +452,7 @@ baobab_fill_model (struct chan_data *data)
hardlinks = g_string_new ("");
if (data->tempHLsize > 0) {
size = g_format_size (data->tempHLsize);
-
+
g_string_assign (hardlinks, "<i>(");
g_string_append (hardlinks, _("contains hardlinks for:"));
g_string_append (hardlinks, " ");
@@ -857,7 +857,7 @@ baobab_init (void)
/* Settings */
baobab.ui_settings = g_settings_new (BAOBAB_UI_SETTINGS_SCHEMA);
baobab.prefs_settings = g_settings_new (BAOBAB_PREFS_SETTINGS_SCHEMA);
-
+
/* Misc */
baobab.CONTENTS_CHANGED_DELAYED = FALSE;
baobab.STOP_SCANNING = TRUE;