diff options
Diffstat (limited to 'gtk/src/resources.c')
-rw-r--r-- | gtk/src/resources.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/src/resources.c b/gtk/src/resources.c index d0b5dee4b..7010202f1 100644 --- a/gtk/src/resources.c +++ b/gtk/src/resources.c @@ -25,7 +25,7 @@ static const gchar resource_str[] = #include "resource_data.h" ; -static GValue *resources; +static GhbValue *resources; void ghb_resource_init() @@ -33,10 +33,10 @@ ghb_resource_init() resources = ghb_plist_parse(resource_str, sizeof(resource_str)-1); } -GValue* +GhbValue* ghb_resource_get(const gchar *name) { - GValue *result; + GhbValue *result; result = ghb_dict_lookup(resources, name); return result; } |