aboutsummaryrefslogtreecommitdiffstats
path: root/filter/filter-int.c
diff options
context:
space:
mode:
Diffstat (limited to 'filter/filter-int.c')
-rw-r--r--filter/filter-int.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/filter/filter-int.c b/filter/filter-int.c
index a92b0b1b2b..d7225a9bda 100644
--- a/filter/filter-int.c
+++ b/filter/filter-int.c
@@ -57,10 +57,10 @@ enum {
static guint signals[LAST_SIGNAL] = { 0 };
-guint
+GtkType
filter_int_get_type (void)
{
- static guint type = 0;
+ static GtkType type = 0;
if (!type) {
GtkTypeInfo type_info = {
@@ -203,16 +203,20 @@ xml_decode (FilterElement *fe, xmlNodePtr node)
fe->name = name;
type = xmlGetProp(node, "type");
+ d(printf ("Type = %s\n", type));
g_free(fs->type);
fs->type = g_strdup(type);
xmlFree(type);
intval = xmlGetProp (node, type?type:"integer");
if (intval) {
+ d(printf ("Value = %s\n", intval));
fs->val = atoi (intval);
xmlFree (intval);
- } else
+ } else {
+ d(printf ("Value = ?unknown?\n"));
fs->val = 0;
+ }
return 0;
}