From 49c5c977f26dfd1d02b493260ca79f43a291ad89 Mon Sep 17 00:00:00 2001 From: Felix Riemann Date: Wed, 30 Oct 2013 19:05:12 +0100 Subject: 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 --- src/eom-properties-dialog.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/eom-properties-dialog.c') 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); -- cgit v1.2.1