plug-ins/common/wmf.c plug-ins/fits/fits.c plug-ins/sel2path/sel2path.c

2007-05-15  Sven Neumann  <sven@gimp.org>

	* plug-ins/common/wmf.c
	* plug-ins/fits/fits.c
	* plug-ins/sel2path/sel2path.c
	* plug-ins/xjt/xjt.c: added missing calls to
	gimp_window_set_transient().


svn path=/trunk/; revision=22492
This commit is contained in:
Sven Neumann 2007-05-15 11:58:56 +00:00 committed by Sven Neumann
parent 687db3d69e
commit a8012cc453
5 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,11 @@
2007-05-15 Sven Neumann <sven@gimp.org>
* plug-ins/common/wmf.c
* plug-ins/fits/fits.c
* plug-ins/sel2path/sel2path.c
* plug-ins/xjt/xjt.c: added missing calls to
gimp_window_set_transient().
2007-05-15 Sven Neumann <sven@gimp.org> 2007-05-15 Sven Neumann <sven@gimp.org>
* plug-ins/common/svg.c * plug-ins/common/svg.c

View File

@ -493,6 +493,8 @@ load_dialog (const gchar *filename)
gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE); gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
gimp_window_set_transient (GTK_WINDOW (dialog));
hbox = gtk_hbox_new (FALSE, 12); hbox = gtk_hbox_new (FALSE, 12);
gtk_container_set_border_width (GTK_CONTAINER (hbox), 12); gtk_container_set_border_width (GTK_CONTAINER (hbox), 12);
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), hbox, gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), hbox,

View File

@ -985,6 +985,10 @@ load_dialog (void)
GTK_RESPONSE_CANCEL, GTK_RESPONSE_CANCEL,
-1); -1);
gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
gimp_window_set_transient (GTK_WINDOW (dialog));
vbox = gtk_vbox_new (FALSE, 12); vbox = gtk_vbox_new (FALSE, 12);
gtk_container_set_border_width (GTK_CONTAINER (vbox), 12); gtk_container_set_border_width (GTK_CONTAINER (vbox), 12);
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), vbox, gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), vbox,

View File

@ -313,6 +313,8 @@ sel2path_dialog (SELVALS *sels)
GTK_RESPONSE_CANCEL, GTK_RESPONSE_CANCEL,
-1); -1);
gimp_window_set_transient (GTK_WINDOW (dlg));
g_signal_connect (dlg, "response", g_signal_connect (dlg, "response",
G_CALLBACK (sel2path_response), G_CALLBACK (sel2path_response),
NULL); NULL);

View File

@ -865,6 +865,8 @@ save_dialog (void)
GTK_RESPONSE_CANCEL, GTK_RESPONSE_CANCEL,
-1); -1);
gimp_window_set_transient (GTK_WINDOW (dlg));
table = gtk_table_new (4, 3, FALSE); table = gtk_table_new (4, 3, FALSE);
gtk_table_set_col_spacings (GTK_TABLE (table), 6); gtk_table_set_col_spacings (GTK_TABLE (table), 6);
gtk_table_set_row_spacings (GTK_TABLE (table), 6); gtk_table_set_row_spacings (GTK_TABLE (table), 6);