[gthumb] always use the generic _g_mime_type_is_image function
- From: Paolo Bacchilega <paobac src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gthumb] always use the generic _g_mime_type_is_image function
- Date: Sun, 27 Jun 2010 21:28:10 +0000 (UTC)
commit 619fc56ef202f875e3c76945f913e75323f4846d
Author: Paolo Bacchilega <paobac src gnome org>
Date: Sun Jun 27 23:25:54 2010 +0200
always use the generic _g_mime_type_is_image function
.../image_viewer/gth-metadata-provider-image.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/extensions/image_viewer/gth-metadata-provider-image.c b/extensions/image_viewer/gth-metadata-provider-image.c
index e7a188f..3afff07 100644
--- a/extensions/image_viewer/gth-metadata-provider-image.c
+++ b/extensions/image_viewer/gth-metadata-provider-image.c
@@ -35,7 +35,7 @@ gth_metadata_provider_image_can_read (GthMetadataProvider *self,
const char *mime_type,
char **attribute_v)
{
- if (! _g_content_type_is_a (mime_type, "image/*"))
+ if (! _g_mime_type_is_image (mime_type))
return FALSE;
return _g_file_attributes_matches_any_v ("general::format,"
@@ -55,7 +55,7 @@ gth_metadata_provider_image_read (GthMetadataProvider *self,
char *filename;
int width, height;
- if (! g_content_type_is_a (gth_file_data_get_mime_type (file_data), "image/*"))
+ if (! _g_mime_type_is_image (gth_file_data_get_mime_type (file_data)))
return;
filename = g_file_get_path (file_data->file);
@@ -68,7 +68,7 @@ gth_metadata_provider_image_read (GthMetadataProvider *self,
g_file_info_set_attribute_int32 (file_data->info, "image::width", width);
g_file_info_set_attribute_int32 (file_data->info, "image::height", height);
- size = g_strdup_printf ("%d x %d", width, height);
+ size = g_strdup_printf ("%d Ã? %d", width, height);
g_file_info_set_attribute_string (file_data->info, "general::dimensions", size);
g_free (size);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]