Oops, return if the unmap test fails. (test_reload_sequence): Use

2005-09-28  Federico Mena Quintero  <federico@ximian.com>

	* tests/autotestfilechooser.c (test_reload_sequence): Oops, return
	if the unmap test fails.
	(test_reload_sequence): Use gtk_widget_show_now() instead of
	gtk_widget_show() for the dialog.
	Thanks to Tim Janik for noticing these.
This commit is contained in:
Federico Mena Quintero 2005-09-29 01:56:10 +00:00 committed by Federico Mena Quintero
parent c5d43cdbef
commit e14ad12b3f
3 changed files with 21 additions and 3 deletions

View File

@ -1,3 +1,11 @@
2005-09-28 Federico Mena Quintero <federico@ximian.com>
* tests/autotestfilechooser.c (test_reload_sequence): Oops, return
if the unmap test fails.
(test_reload_sequence): Use gtk_widget_show_now() instead of
gtk_widget_show() for the dialog.
Thanks to Tim Janik for noticing these.
2005-09-28 Federico Mena Quintero <federico@ximian.com>
* tests/testcellrenderertext.c: New file with a set of tests for

View File

@ -1,3 +1,11 @@
2005-09-28 Federico Mena Quintero <federico@ximian.com>
* tests/autotestfilechooser.c (test_reload_sequence): Oops, return
if the unmap test fails.
(test_reload_sequence): Use gtk_widget_show_now() instead of
gtk_widget_show() for the dialog.
Thanks to Tim Janik for noticing these.
2005-09-28 Federico Mena Quintero <federico@ximian.com>
* tests/testcellrenderertext.c: New file with a set of tests for

View File

@ -257,7 +257,7 @@ test_action_widgets (void)
GTK_STOCK_OK,
GTK_RESPONSE_ACCEPT,
NULL);
gtk_widget_show (dialog);
gtk_widget_show_now (dialog);
action = gtk_file_chooser_get_action (GTK_FILE_CHOOSER (dialog));
@ -322,7 +322,7 @@ test_reload_sequence (gboolean set_folder_before_map)
/* After mapping, it is loading some folder, either the one that was explicitly set or the default one */
gtk_widget_show (dialog);
gtk_widget_show_now (dialog);
passed = (impl->current_folder != NULL
&& impl->browse_files_model != NULL
@ -347,10 +347,12 @@ test_reload_sequence (gboolean set_folder_before_map)
&& ((impl->load_state == LOAD_LOADING || impl->load_state == LOAD_FINISHED)
? (impl->load_timeout_id == 0 && impl->sort_model != NULL)
: TRUE));
if (!passed)
return FALSE;
/* Map it again! */
gtk_widget_show (dialog);
gtk_widget_show_now (dialog);
passed = (impl->current_folder != NULL
&& impl->browse_files_model != NULL