summaryrefslogtreecommitdiff
path: root/tumbler/tumbler-thumbnailer.c
diff options
context:
space:
mode:
authorJannis Pohlmann <jannis@xfce.org>2011-02-13 14:21:42 +0100
committerJannis Pohlmann <jannis@xfce.org>2011-02-13 14:21:42 +0100
commitac10985250530ecc04daf91081737a9d3bc763db (patch)
treeacd0cc32308303f79a70e7bcf976b22a67cd421f /tumbler/tumbler-thumbnailer.c
parent7aad7803fe9875d8b651ab174607a1943ac30fa2 (diff)
downloadtumbler-ac10985250530ecc04daf91081737a9d3bc763db.tar.gz
Get rid of the inherently broken GStrv type in function signatures.
This breaks the API but it is not finalized anyway yet.
Diffstat (limited to 'tumbler/tumbler-thumbnailer.c')
-rw-r--r--tumbler/tumbler-thumbnailer.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/tumbler/tumbler-thumbnailer.c b/tumbler/tumbler-thumbnailer.c
index 0d62f3c..62210c8 100644
--- a/tumbler/tumbler-thumbnailer.c
+++ b/tumbler/tumbler-thumbnailer.c
@@ -1,6 +1,6 @@
/* vi:set et ai sw=2 sts=2 ts=2: */
/*-
- * Copyright (c) 2009 Jannis Pohlmann <jannis@xfce.org>
+ * Copyright (c) 2009-2011 Jannis Pohlmann <jannis@xfce.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@@ -152,10 +152,10 @@ tumbler_thumbnailer_create (TumblerThumbnailer *thumbnailer,
-GStrv
+gchar **
tumbler_thumbnailer_get_hash_keys (TumblerThumbnailer *thumbnailer)
{
- GStrv hash_keys;
+ gchar **hash_keys;
g_return_val_if_fail (TUMBLER_IS_THUMBNAILER (thumbnailer), NULL);
@@ -165,10 +165,10 @@ tumbler_thumbnailer_get_hash_keys (TumblerThumbnailer *thumbnailer)
-GStrv
+gchar **
tumbler_thumbnailer_get_mime_types (TumblerThumbnailer *thumbnailer)
{
- GStrv mime_types;
+ gchar **mime_types;
g_return_val_if_fail (TUMBLER_IS_THUMBNAILER (thumbnailer), NULL);
@@ -178,10 +178,10 @@ tumbler_thumbnailer_get_mime_types (TumblerThumbnailer *thumbnailer)
-GStrv
+gchar **
tumbler_thumbnailer_get_uri_schemes (TumblerThumbnailer *thumbnailer)
{
- GStrv uri_schemes;
+ gchar **uri_schemes;
g_return_val_if_fail (TUMBLER_IS_THUMBNAILER (thumbnailer), NULL);
@@ -196,7 +196,7 @@ tumbler_thumbnailer_supports_hash_key (TumblerThumbnailer *thumbnailer,
const gchar *hash_key)
{
gboolean supported = FALSE;
- GStrv hash_keys;
+ gchar **hash_keys;
guint n;
g_return_val_if_fail (TUMBLER_IS_THUMBNAILER (thumbnailer), FALSE);