1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00

Fix the build on 4.X.

Reported by:	pointyhat via kris
This commit is contained in:
Joe Marcus Clarke 2005-04-02 08:56:38 +00:00
parent 579d392701
commit 39af0ac1dc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=132160

View File

@ -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);