[gimp] plug-ins: kill some deprecated GtkAlignments
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] plug-ins: kill some deprecated GtkAlignments
- Date: Sat, 20 Oct 2018 10:37:54 +0000 (UTC)
commit 643004af062b0a44c3b04a8a3895b1e66daa01ad
Author: Michael Natterer <mitch gimp org>
Date: Sat Oct 20 12:37:12 2018 +0200
plug-ins: kill some deprecated GtkAlignments
plug-ins/common/file-svg.c | 7 +------
plug-ins/common/file-wmf.c | 7 +------
plug-ins/common/newsprint.c | 33 ++++++++++++---------------------
3 files changed, 14 insertions(+), 33 deletions(-)
---
diff --git a/plug-ins/common/file-svg.c b/plug-ins/common/file-svg.c
index 3e4f55a477..fa67d93603 100644
--- a/plug-ins/common/file-svg.c
+++ b/plug-ins/common/file-svg.c
@@ -685,7 +685,6 @@ load_dialog (const gchar *filename,
GdkPixbuf *preview;
GtkWidget *grid;
GtkWidget *grid2;
- GtkWidget *abox;
GtkWidget *res;
GtkWidget *label;
GtkWidget *spinbutton;
@@ -749,13 +748,9 @@ load_dialog (const gchar *filename,
gtk_box_pack_start (GTK_BOX (hbox), vbox, FALSE, FALSE, 0);
gtk_widget_show (vbox);
- abox = gtk_alignment_new (0.5, 0.5, 0.0, 0.0);
- gtk_box_pack_start (GTK_BOX (vbox), abox, FALSE, FALSE, 0);
- gtk_widget_show (abox);
-
frame = gtk_frame_new (NULL);
gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN);
- gtk_container_add (GTK_CONTAINER (abox), frame);
+ gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
gtk_widget_show (frame);
image = gtk_image_new_from_pixbuf (preview);
diff --git a/plug-ins/common/file-wmf.c b/plug-ins/common/file-wmf.c
index 191de13919..a61121aca9 100644
--- a/plug-ins/common/file-wmf.c
+++ b/plug-ins/common/file-wmf.c
@@ -495,7 +495,6 @@ load_dialog (const gchar *filename)
GtkWidget *image;
GtkWidget *grid;
GtkWidget *grid2;
- GtkWidget *abox;
GtkWidget *res;
GtkWidget *label;
GtkWidget *spinbutton;
@@ -537,13 +536,9 @@ load_dialog (const gchar *filename)
gtk_box_pack_start (GTK_BOX (hbox), vbox, FALSE, FALSE, 0);
gtk_widget_show (vbox);
- abox = gtk_alignment_new (0.5, 0.5, 0.0, 0.0);
- gtk_box_pack_start (GTK_BOX (vbox), abox, FALSE, FALSE, 0);
- gtk_widget_show (abox);
-
frame = gtk_frame_new (NULL);
gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN);
- gtk_container_add (GTK_CONTAINER (abox), frame);
+ gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
gtk_widget_show (frame);
pixels = wmf_get_pixbuf (filename, &vals.width, &vals.height);
diff --git a/plug-ins/common/newsprint.c b/plug-ins/common/newsprint.c
index 35c90a3fe1..b2c129185d 100644
--- a/plug-ins/common/newsprint.c
+++ b/plug-ins/common/newsprint.c
@@ -787,7 +787,7 @@ newsprint_menu_callback (GtkWidget *widget,
*/
if (in_progress)
{
- g_printf ("newsprint_menu_callback: unexpected recursion: can't happen\n");
+ g_printerr ("newsprint_menu_callback: unexpected recursion: can't happen\n");
return;
}
@@ -967,8 +967,6 @@ new_channel (const chan_tmpl *ct, GtkWidget *preview)
GtkSizeGroup *group;
GtkWidget *grid;
GtkWidget *hbox;
- GtkWidget *hbox2;
- GtkWidget *abox;
GtkWidget *label;
spot_info_t *sf;
channel_st *chst;
@@ -1011,22 +1009,15 @@ new_channel (const chan_tmpl *ct, GtkWidget *preview)
gtk_box_pack_start (GTK_BOX (chst->vbox), hbox, FALSE, FALSE, 0);
gtk_widget_show (hbox);
- abox = gtk_alignment_new (0.5, 0.0, 0.0, 0.0);
- gtk_box_pack_start (GTK_BOX (hbox), abox, FALSE, FALSE, 0);
- gtk_widget_show (abox);
-
- hbox2 = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
- gtk_container_add (GTK_CONTAINER (abox), hbox2);
- gtk_widget_show (hbox2);
-
label = gtk_label_new_with_mnemonic (_("_Spot function:"));
gtk_label_set_xalign (GTK_LABEL (label), 0.0);
- gtk_box_pack_start (GTK_BOX (hbox2), label, FALSE, FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
gtk_widget_show (label);
gtk_size_group_add_widget (group, label);
chst->combo = g_object_new (GIMP_TYPE_INT_COMBO_BOX, NULL);
+ gtk_widget_set_valign (chst->combo, GTK_ALIGN_CENTER);
for (sf = spotfn_list, i = 0; sf->name; sf++, i++)
gimp_int_combo_box_append (GIMP_INT_COMBO_BOX (chst->combo),
@@ -1044,7 +1035,7 @@ new_channel (const chan_tmpl *ct, GtkWidget *preview)
G_CALLBACK (gimp_preview_invalidate),
preview);
- gtk_box_pack_start (GTK_BOX (hbox2), chst->combo, FALSE, FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (hbox), chst->combo, FALSE, FALSE, 0);
gtk_widget_show (chst->combo);
/* spot function previews */
@@ -1476,7 +1467,7 @@ newsprint_cspace_update (GtkWidget *widget,
preview = g_object_get_data (G_OBJECT (widget), "preview");
if (!st)
- g_printf ("newsprint: cspace_update: no state, can't happen!\n");
+ g_printerr ("newsprint: cspace_update: no state, can't happen!\n");
if (st)
{
@@ -1831,13 +1822,13 @@ newsprint (GimpDrawable *drawable,
WGT (x, y) = BARTLETT (x, y);
#endif /* 0 */
-#define ASRT(_x) \
-do { \
- if (!VALID_SPOTFN(_x)) \
- { \
- g_printf ("newsprint: %d is not a valid spot type\n", _x); \
- _x = SPOTFN_DOT; \
- } \
+#define ASRT(_x) \
+do { \
+ if (!VALID_SPOTFN(_x)) \
+ { \
+ g_printerr ("newsprint: %d is not a valid spot type\n", _x); \
+ _x = SPOTFN_DOT; \
+ } \
} while(0)
/* calculate the RGB / CMYK rotations and threshold matrices */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]