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:
parent
70b5c7eef5
commit
285f52cea4
2 changed files with 13 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue