diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/em-account-editor.c | 3 | ||||
-rw-r--r-- | mail/em-folder-properties.c | 1 |
3 files changed, 8 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index fec2c1c4a9..945a9f4f3a 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2005-01-19 Jeffrey Stedfast <fejj@novell.com> + + * em-folder-properties.c (emfp_get_folder_item): Increment i each + time thru the loop or we lose widgets. + 2005-01-19 Not Zed <NotZed@Ximian.com> ** See bug #66943. diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index 1b66eef5d2..8aeb86a99c 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -936,7 +936,8 @@ emae_url_set_hostport(CamelURL *url, const char *txt) { const char *port; char *host; - + + /* FIXME: what if this was a raw IPv6 address? */ if (txt && (port = strchr(txt, ':'))) { camel_url_set_port(url, atoi(port+1)); host = g_alloca(port-txt+1); diff --git a/mail/em-folder-properties.c b/mail/em-folder-properties.c index 78328db898..90c56cbfb6 100644 --- a/mail/em-folder-properties.c +++ b/mail/em-folder-properties.c @@ -201,6 +201,7 @@ emfp_get_folder_item(EConfig *ec, EConfigItem *item, struct _GtkWidget *parent, row++; l = l->next; + i++; } return table; |