diff options
author | Felix Riemann <[email protected]> | 2013-10-30 19:05:12 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-07-26 00:45:21 +0200 |
commit | 49c5c977f26dfd1d02b493260ca79f43a291ad89 (patch) | |
tree | 3ad7764beb337e88bfc5575a23ed40157cdf7f74 /src/eom-properties-dialog.c | |
parent | 9593351e473942268e6297011634d75246d4e246 (diff) | |
download | eom-49c5c977f26dfd1d02b493260ca79f43a291ad89.tar.bz2 eom-49c5c977f26dfd1d02b493260ca79f43a291ad89.tar.xz |
EomExifDetails: Rename to EomMetadataDetails
The widget is not specific to Exif, and is used for XMP as well.
https://bugzilla.gnome.org/show_bug.cgi?id=509406
origin commit:
https://gitlab.gnome.org/GNOME/eog/commit/2969a58
Plus a clean up, tabs to spaces for eom-metadata-details.c/h
Diffstat (limited to 'src/eom-properties-dialog.c')
-rw-r--r-- | src/eom-properties-dialog.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/eom-properties-dialog.c b/src/eom-properties-dialog.c index 1999040..afe852c 100644 --- a/src/eom-properties-dialog.c +++ b/src/eom-properties-dialog.c @@ -48,7 +48,7 @@ #endif #if HAVE_METADATA -#include "eom-exif-details.h" +#include "eom-metadata-details.h" #endif enum { @@ -320,7 +320,7 @@ pd_update_metadata_tab (EomPropertiesDialog *prop_dlg, eom_exif_util_set_label_text (GTK_LABEL (priv->exif_date_label), exif_data, EXIF_TAG_DATE_TIME_ORIGINAL); - eom_exif_details_update (EOM_EXIF_DETAILS (priv->exif_details), + eom_metadata_details_update (EOM_METADATA_DETAILS (priv->exif_details), exif_data); /* exif_data_unref can handle NULL-values */ @@ -356,7 +356,7 @@ pd_update_metadata_tab (EomPropertiesDialog *prop_dlg, "rights", priv->xmp_rights_label); - eom_exif_details_xmp_update (EOM_EXIF_DETAILS (priv->exif_details), xmp_data); + eom_metadata_details_xmp_update (EOM_METADATA_DETAILS (priv->exif_details), xmp_data); xmp_free (xmp_data); } else { @@ -690,7 +690,7 @@ eom_properties_dialog_init (EomPropertiesDialog *prop_dlg) GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); - priv->exif_details = eom_exif_details_new (); + priv->exif_details = eom_metadata_details_new (); gtk_widget_set_size_request (priv->exif_details, -1, 170); gtk_container_set_border_width (GTK_CONTAINER (sw), 6); gtk_widget_set_vexpand (priv->exif_details, TRUE); |