1
1

(create_dlg): ignore empty string as title.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
Этот коммит содержится в:
Andrew Borodin 2012-09-20 12:48:14 +04:00
родитель d4b95ea14d
Коммит e009cd9ea9

Просмотреть файл

@ -803,7 +803,7 @@ create_dlg (gboolean modal, int y1, int x1, int lines, int cols,
new_d->mouse_status = MOU_UNHANDLED;
/* Strip existing spaces, add one space before and after the title */
if (title != NULL)
if (title != NULL && *title != '\0')
{
char *t;