diff options
author | infirit <[email protected]> | 2014-07-25 17:26:26 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2014-07-25 22:45:27 +0200 |
commit | b8e7359d93f7f68f410391b39dde37eb1067a92a (patch) | |
tree | 54bed0f6139406c835974bf61b291004bd7ccefe /src/eom-properties-dialog.c | |
parent | 14a6c9ccd6088184e27a239e7b6a091b0c232e6e (diff) | |
download | eom-b8e7359d93f7f68f410391b39dde37eb1067a92a.tar.bz2 eom-b8e7359d93f7f68f410391b39dde37eb1067a92a.tar.xz |
Wrap ExifData in a EogExifData boxed type
This is for better interaction with bindings
Based on eog commit b88d3713fe45a4bab1bd24ac8ff60551c5c31d49
From Claudio Saavedra <[email protected]>
Diffstat (limited to 'src/eom-properties-dialog.c')
-rw-r--r-- | src/eom-properties-dialog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eom-properties-dialog.c b/src/eom-properties-dialog.c index 1dc6715..6d21a5c 100644 --- a/src/eom-properties-dialog.c +++ b/src/eom-properties-dialog.c @@ -178,14 +178,14 @@ pd_update_general_tab (EomPropertiesDialog *prop_dlg, #if HAVE_EXIF static void -eom_exif_set_label (GtkWidget *w, ExifData *exif_data, gint tag_id) +eom_exif_set_label (GtkWidget *w, EomExifData *exif_data, gint tag_id) { gchar exif_buffer[512]; const gchar *buf_ptr; gchar *label_text = NULL; if (exif_data) { - buf_ptr = eom_exif_util_get_value (exif_data, tag_id, + buf_ptr = eom_exif_data_get_value (exif_data, tag_id, exif_buffer, 512); if (tag_id == EXIF_TAG_DATE_TIME_ORIGINAL && buf_ptr) |