2008-11-24 Johan Dahlin <jdahlin@async.com.br>
* girepository/gdump.c (dump_type): Remove a warning,
be less verbose on error on fundamental types.
svn path=/trunk/; revision=963
+2008-11-24 Johan Dahlin <jdahlin@async.com.br>
+
+ * girepository/gdump.c (dump_type): Remove a warning,
+ be less verbose on error on fundamental types.
+
2008-11-23 Johan Dahlin <jdahlin@async.com.br>
* giscanner/dumper.py: Add license headers,
extra pedantic checks.
2008-11-23 Johan Dahlin <jdahlin@async.com.br>
-
+
Make it compilable with -Werror on my system by adding
a couple of prototypes and including headers.
/* GValue, etc. Just skip them. */
break;
default:
- g_warning ("unhandled gtype %s", g_type_name (type));
+ /* Other fundamental types such as the once GStreamer and Clutter registers
+ * are not yet interesting from an introspection perspective and should be
+ * ignored
+ */
+ break;
}
}