Don't return NULL.

2007-12-28  Matthias Clasen  <mclasen@redhat.com>

        * gdk/x11/gdkwindow-x11.c (get_default_title): Don't return NULL.


svn path=/trunk/; revision=19274
This commit is contained in:
Matthias Clasen
2007-12-28 15:51:31 +00:00
committed by Matthias Clasen
parent fb161a603f
commit c30e1d8e00
2 changed files with 6 additions and 0 deletions

View File

@ -498,6 +498,8 @@ get_default_title (void)
title = g_get_application_name ();
if (!title)
title = g_get_prgname ();
if (!title)
title = "";
return title;
}