When connecting to the transport username changed event, pass the
2002-01-08 Jeffrey Stedfast <fejj@ximian.com> * mail-account-gui.c (mail_account_gui_new): When connecting to the transport username changed event, pass the gui->transport not the gui->source. svn path=/trunk/; revision=15266
This commit is contained in:

committed by
Jeffrey Stedfast

parent
a4db79a6d6
commit
9d39da64dc
@ -1,3 +1,9 @@
|
||||
2002-01-08 Jeffrey Stedfast <fejj@ximian.com>
|
||||
|
||||
* mail-account-gui.c (mail_account_gui_new): When connecting to
|
||||
the transport username changed event, pass the gui->transport not
|
||||
the gui->source.
|
||||
|
||||
2002-01-08 Iain Holmes <iain@ximian.com>
|
||||
|
||||
* importers/evolution-mbox-importer.c (string_to_int): Takes a hex
|
||||
|
@ -1310,7 +1310,7 @@ mail_account_gui_new (MailConfigAccount *account)
|
||||
GTK_SIGNAL_FUNC (service_changed), &gui->transport);
|
||||
gui->transport.username = GTK_ENTRY (glade_xml_get_widget (gui->xml, "transport_user"));
|
||||
gtk_signal_connect (GTK_OBJECT (gui->transport.username), "changed",
|
||||
GTK_SIGNAL_FUNC (service_changed), &gui->source);
|
||||
GTK_SIGNAL_FUNC (service_changed), &gui->transport);
|
||||
gui->transport.use_ssl = GTK_TOGGLE_BUTTON (glade_xml_get_widget (gui->xml, "transport_use_ssl"));
|
||||
gui->transport.no_ssl = glade_xml_get_widget (gui->xml, "transport_ssl_disabled");
|
||||
gui->transport_needs_auth = GTK_TOGGLE_BUTTON (glade_xml_get_widget (gui->xml, "transport_needs_auth"));
|
||||
|
@ -811,6 +811,8 @@ get_folder (CamelFilterDriver *d, const char *uri, void *data, CamelException *e
|
||||
static void
|
||||
session_play_sound (CamelFilterDriver *driver, const char *filename, gpointer user_data)
|
||||
{
|
||||
printf ("playing sound file: %s\n", filename);
|
||||
|
||||
if (!filename || !*filename)
|
||||
gdk_beep ();
|
||||
else
|
||||
|
Reference in New Issue
Block a user