add more debugging output.

Sun Jan 19 02:14:35 2003  Jonathan Blandford  <jrb@gnome.org>

	* gnome-theme-test.c (main): add more debugging output.
This commit is contained in:
Jonathan Blandford 2003-01-19 07:17:03 +00:00 committed by Jonathan Blandford
parent 70b5c7eef5
commit 285f52cea4
2 changed files with 13 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Sun Jan 19 02:14:35 2003 Jonathan Blandford <jrb@gnome.org>
* gnome-theme-test.c (main): add more debugging output.
Thu Jan 16 15:51:33 2003 Jonathan Blandford <jrb@redhat.com>
* gnome-theme-test.c: new little test program for helping people

View file

@ -74,7 +74,15 @@ main (int argc, char *argv[])
themes = gnome_theme_info_find_by_type (GNOME_THEME_GTK_2);
if (themes == NULL)
{
g_print ("No gtk-2 themes were found.\n");
gchar *str;
g_print ("No gtk-2 themes were found. The following directories were tested:\n");
str = gtk_rc_get_theme_dir ();
g_print ("\t%s\n", str);
g_free (str);
str = g_build_filename (g_get_home_dir (), ".themes", NULL);
g_print ("\t%s\n", str);
g_free (str);
}
else
{