Fix args to g_type_init ().
Thu Jun 28 21:54:19 2001 Owen Taylor <otaylor@redhat.com> * make-inline-pixbuf.c test-gdk-pixbuf.c test-loaders.c gdk-pixbuf-csource.c: Fix args to g_type_init ().
This commit is contained in:
parent
0bee26c7ba
commit
0a2fce4577
@ -1,3 +1,8 @@
|
||||
Thu Jun 28 21:54:19 2001 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* make-inline-pixbuf.c test-gdk-pixbuf.c test-loaders.c
|
||||
gdk-pixbuf-csource.c: Fix args to g_type_init ().
|
||||
|
||||
2001-06-28 Havoc Pennington <hp@pobox.com>
|
||||
|
||||
* gdk-pixdata.c: <string.h>
|
||||
|
@ -76,7 +76,7 @@ main (int argc,
|
||||
GError *error = NULL;
|
||||
|
||||
/* initialize glib/GdkPixbuf */
|
||||
g_type_init (0);
|
||||
g_type_init ();
|
||||
|
||||
/* parse args and do fast exits */
|
||||
parse_args (&argc, &argv);
|
||||
|
@ -153,7 +153,7 @@ main (int argc, char **argv)
|
||||
gchar *outfilename;
|
||||
int i;
|
||||
|
||||
g_type_init (0);
|
||||
g_type_init ();
|
||||
|
||||
|
||||
if (argc < 4)
|
||||
|
@ -230,7 +230,7 @@ main (int argc, char **argv)
|
||||
|
||||
result = EXIT_SUCCESS;
|
||||
|
||||
g_type_init (G_TYPE_DEBUG_NONE);
|
||||
g_type_init ();
|
||||
|
||||
/* Run some tests. */
|
||||
if (!simple_composite_test ()) {
|
||||
|
@ -370,7 +370,7 @@ main (int argc, char **argv)
|
||||
}
|
||||
g_random_set_seed (seed);
|
||||
|
||||
g_type_init (G_TYPE_DEBUG_NONE);
|
||||
g_type_init ();
|
||||
g_log_set_fatal_mask (NULL, G_LOG_LEVEL_WARNING | G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL);
|
||||
|
||||
putenv ("GDK_PIXBUF_MODULEDIR="BUILT_MODULES_DIR);
|
||||
|
Loading…
Reference in New Issue
Block a user