diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-04-02 08:56:38 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-04-02 08:56:38 +0000 |
commit | 39af0ac1dc6db7ae27aa4657fe333afdfb999c99 (patch) | |
tree | f3df8667e229a3a771827f3aab74a22a57df1164 /mail | |
parent | - deBROKEN'ify, fix plist (diff) |
Fix the build on 4.X.
Reported by: pointyhat via kris
Diffstat (limited to 'mail')
-rw-r--r-- | mail/balsa/files/patch-src_pref-manager.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/mail/balsa/files/patch-src_pref-manager.c b/mail/balsa/files/patch-src_pref-manager.c new file mode 100644 index 000000000000..c342287e7bd9 --- /dev/null +++ b/mail/balsa/files/patch-src_pref-manager.c @@ -0,0 +1,18 @@ +--- src/pref-manager.c.orig Sat Apr 2 03:54:40 2005 ++++ src/pref-manager.c Sat Apr 2 03:55:05 2005 +@@ -2457,13 +2457,14 @@ moving_messages_group(GtkWidget * page) + { + GtkWidget *group; + GtkWidget *label; ++ GtkWidget *table; + + group = pm_group_new(_("Message Window")); + + label = gtk_label_new(_("Action after moving/trashing a message")); + gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); + +- GtkWidget *table = create_table(4, 2, page); ++ table = create_table(4, 2, page); + gtk_table_attach(GTK_TABLE(table), label, 0, 1, 3, 4, + (GtkAttachOptions) (GTK_FILL), + (GtkAttachOptions) (0), 0, 0); |