libgimpwidgets: add gtk_separator_new() to gimp3migration.[ch]

and use it all over the place.
This commit is contained in:
Michael Natterer
2011-10-02 14:33:44 +02:00
parent 2c175b068d
commit f007ce352d
3 changed files with 11 additions and 1 deletions

View File

@ -218,7 +218,7 @@ create_chain_button (void)
label = gtk_label_new ("Linked ");
gtk_table_attach (GTK_TABLE (table), label, 1,2, 1,2,
GTK_SHRINK | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0);
separator = gtk_vseparator_new ();
separator = gtk_separator_new (GTK_ORIENTATION_VERTICAL);
gtk_table_attach (GTK_TABLE (table), separator, 2,3, 0,2,
GTK_SHRINK | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0);
label = gtk_label_new (" Unlinked");