diff --git a/vfs-methods/themus/ChangeLog b/vfs-methods/themus/ChangeLog index 1957af553..5ab53d6c3 100644 --- a/vfs-methods/themus/ChangeLog +++ b/vfs-methods/themus/ChangeLog @@ -1,3 +1,9 @@ +2004-12-25 Kjartan Maraas + + * theme-method.c: (vfs_module_init): NULL vs. 0 + * theme-thumbnailer.c: (main): Same + * themus-theme-applier.c: (main): Same + 2004-12-10 James Henstridge * Makefile.am: update the desktop file database on install, since diff --git a/vfs-methods/themus/theme-method.c b/vfs-methods/themus/theme-method.c index f386e518f..5c4a6ed81 100644 --- a/vfs-methods/themus/theme-method.c +++ b/vfs-methods/themus/theme-method.c @@ -702,7 +702,7 @@ static GnomeVFSMethod method = { GnomeVFSMethod* vfs_module_init (const char *method_name, const char *args) { - gnome_theme_init (FALSE); + gnome_theme_init (NULL); if (!strcmp (method_name, "themes")) { gnome_theme_info_register_theme_change ((GFunc)invoke_monitors, NULL); diff --git a/vfs-methods/themus/theme-thumbnailer.c b/vfs-methods/themus/theme-thumbnailer.c index 927c2c085..0b8fbbca6 100644 --- a/vfs-methods/themus/theme-thumbnailer.c +++ b/vfs-methods/themus/theme-thumbnailer.c @@ -136,7 +136,7 @@ main(int argc, char **argv) return 1; } - gnome_theme_init (FALSE); + gnome_theme_init (NULL); uri = gnome_vfs_uri_new (argv[1]); theme = gnome_theme_read_meta_theme (uri); gnome_vfs_uri_unref (uri); diff --git a/vfs-methods/themus/themus-theme-applier.c b/vfs-methods/themus/themus-theme-applier.c index 58f31cf1b..c92915fad 100644 --- a/vfs-methods/themus/themus-theme-applier.c +++ b/vfs-methods/themus/themus-theme-applier.c @@ -53,7 +53,7 @@ int main (int argc, char **argv) if (!args) return 1; gnome_vfs_init (); - gnome_theme_init (FALSE); + gnome_theme_init (NULL); uri = gnome_vfs_uri_new (args[0]); g_assert (uri != NULL);