diff options
author | infirit <[email protected]> | 2014-05-17 16:09:07 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2014-07-24 18:05:54 +0200 |
commit | 5115e68d942f1bdae0729841ae420de1a5c61840 (patch) | |
tree | 9d22318de75b05df6231246ca1f62e6a9f506fc6 /src/eom-properties-dialog.c | |
parent | d69408760eaa86d0532068c66c92847f2c12379c (diff) | |
download | eom-5115e68d942f1bdae0729841ae420de1a5c61840.tar.bz2 eom-5115e68d942f1bdae0729841ae420de1a5c61840.tar.xz |
Drop support for glib < 2.36
Diffstat (limited to 'src/eom-properties-dialog.c')
-rw-r--r-- | src/eom-properties-dialog.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/eom-properties-dialog.c b/src/eom-properties-dialog.c index 2e8beb2..27a8a95 100644 --- a/src/eom-properties-dialog.c +++ b/src/eom-properties-dialog.c @@ -165,11 +165,7 @@ pd_update_general_tab (EomPropertiesDialog *prop_dlg, gtk_label_set_text (GTK_LABEL (prop_dlg->priv->type_label), type_str); bytes = eom_image_get_bytes (image); -#if GLIB_CHECK_VERSION (2, 30, 0) bytes_str = g_format_size (bytes); -#else - bytes_str = g_format_size_for_display (bytes); -#endif gtk_label_set_text (GTK_LABEL (prop_dlg->priv->bytes_label), bytes_str); |