Fix backwards asssertion. (#85434)

Sat Jun 15 23:05:19 2002  Owen Taylor  <otaylor@redhat.com>

        * gtk/gtkfilesel.c (gtk_file_selection_set_filename):
        Fix backwards asssertion. (#85434)
This commit is contained in:
Owen Taylor 2002-06-16 03:12:05 +00:00 committed by Owen Taylor
parent ab68fd0272
commit 12fa1554d9
7 changed files with 37 additions and 13 deletions

View File

@ -1,10 +1,14 @@
Sat Jun 15 23:05:19 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkfilesel.c (gtk_file_selection_set_filename):
Fix backwards asssertion. (#85434)
Sat Jun 15 16:10:00 2002 James M. Cape <jcape@ignore-your.tv>
* gtk/gtktexttag.c (gtk_text_tag_set_property):
Notify about "background-full-height-set", not
"bg_full_height_set".
"bg_full_height_set". (#83336)
Fri Jun 14 15:41:50 2002 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview.c: Fix bug #84268, where validate_rows sometimes

View File

@ -1,10 +1,14 @@
Sat Jun 15 23:05:19 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkfilesel.c (gtk_file_selection_set_filename):
Fix backwards asssertion. (#85434)
Sat Jun 15 16:10:00 2002 James M. Cape <jcape@ignore-your.tv>
* gtk/gtktexttag.c (gtk_text_tag_set_property):
Notify about "background-full-height-set", not
"bg_full_height_set".
"bg_full_height_set". (#83336)
Fri Jun 14 15:41:50 2002 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview.c: Fix bug #84268, where validate_rows sometimes

View File

@ -1,10 +1,14 @@
Sat Jun 15 23:05:19 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkfilesel.c (gtk_file_selection_set_filename):
Fix backwards asssertion. (#85434)
Sat Jun 15 16:10:00 2002 James M. Cape <jcape@ignore-your.tv>
* gtk/gtktexttag.c (gtk_text_tag_set_property):
Notify about "background-full-height-set", not
"bg_full_height_set".
"bg_full_height_set". (#83336)
Fri Jun 14 15:41:50 2002 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview.c: Fix bug #84268, where validate_rows sometimes

View File

@ -1,10 +1,14 @@
Sat Jun 15 23:05:19 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkfilesel.c (gtk_file_selection_set_filename):
Fix backwards asssertion. (#85434)
Sat Jun 15 16:10:00 2002 James M. Cape <jcape@ignore-your.tv>
* gtk/gtktexttag.c (gtk_text_tag_set_property):
Notify about "background-full-height-set", not
"bg_full_height_set".
"bg_full_height_set". (#83336)
Fri Jun 14 15:41:50 2002 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview.c: Fix bug #84268, where validate_rows sometimes

View File

@ -1,10 +1,14 @@
Sat Jun 15 23:05:19 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkfilesel.c (gtk_file_selection_set_filename):
Fix backwards asssertion. (#85434)
Sat Jun 15 16:10:00 2002 James M. Cape <jcape@ignore-your.tv>
* gtk/gtktexttag.c (gtk_text_tag_set_property):
Notify about "background-full-height-set", not
"bg_full_height_set".
"bg_full_height_set". (#83336)
Fri Jun 14 15:41:50 2002 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview.c: Fix bug #84268, where validate_rows sometimes

View File

@ -1,10 +1,14 @@
Sat Jun 15 23:05:19 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkfilesel.c (gtk_file_selection_set_filename):
Fix backwards asssertion. (#85434)
Sat Jun 15 16:10:00 2002 James M. Cape <jcape@ignore-your.tv>
* gtk/gtktexttag.c (gtk_text_tag_set_property):
Notify about "background-full-height-set", not
"bg_full_height_set".
"bg_full_height_set". (#83336)
Fri Jun 14 15:41:50 2002 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview.c: Fix bug #84268, where validate_rows sometimes

View File

@ -1168,7 +1168,7 @@ gtk_file_selection_set_filename (GtkFileSelection *filesel,
g_return_if_fail (filename != NULL);
filename_utf8 = g_filename_to_utf8 (filename, -1, NULL, NULL, NULL);
g_return_if_fail (filename_utf8 == NULL);
g_return_if_fail (filename_utf8 != NULL);
last_slash = strrchr (filename, G_DIR_SEPARATOR);