2007-06-30 Johannes Schmid <johannes.schmid@openismus.com>
authorJohannes Schmid <johannes.schmid@openismus.com>
Sat, 30 Jun 2007 16:53:11 +0000 (16:53 +0000)
committerJohannes Schmid <johannes.schmid@openismus.com>
Sat, 30 Jun 2007 16:53:11 +0000 (16:53 +0000)
* src/maemo/modest-connection-specific-smtp-edit-window.c:
(on_value_changed),
(modest_connection_specific_smtp_edit_window_init):

Fixed project.maemo.org bug NB#60479 by using \"notify::value\" instead
of \"changed\" for now

pmo-trunk-r2511

ChangeLog
ChangeLog2
src/maemo/modest-connection-specific-smtp-edit-window.c

index 14a901b..acb6b92 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,20 +1 @@
-2007-06-29  Murray Cumming,,,  <set EMAIL_ADDRESS environment variable>
-
-       reviewed by: <delete if not using a buddy>
-
-       * src/maemo/modest-maemo-utils.c:
-       (modest_maemo_utils_get_supported_secure_authentication_methods):
-       * src/maemo/modest-main-window.c:
-       (on_zoom_minus_plus_not_implemented),
-       (modest_main_window_set_offline):
-       * src/modest-defs.h:
-       * src/modest-init.c: (init_default_settings):
-       * src/modest-mail-operation.c:
-       (modest_mail_operation_update_account):
-       * src/modest-main.c: (on_show):
-       * src/modest-tny-account.c: (on_connection_status_changed),
-       (modest_tny_account_new_from_server_account):
-       * src/modest-ui-actions.h:
-       * src/widgets/modest-main-window.h:
-
 * please check the svn log instead
index 53c3574..e7cbef7 100644 (file)
@@ -1,4 +1,13 @@
-2007-06-29  Murray Cumming  <murrayc@murrayc.com
+2007-06-30  Johannes Schmid <johannes.schmid@openismus.com>
+
+       * src/maemo/modest-connection-specific-smtp-edit-window.c:
+       (on_value_changed),
+       (modest_connection_specific_smtp_edit_window_init):
+       
+       Fixed project.maemo.org bug NB#60479 by using "notify::value" instead 
+       of "changed" for now
+
+2007-06-29  Murray Cumming  <murrayc@murrayc.com>
 
        * src/modest-tny-account.c: 
        (modest_tny_account_new_from_server_account):
index 4f49954..6303d84 100644 (file)
@@ -126,6 +126,12 @@ on_change(GtkWidget* widget, ModestConnectionSpecificSmtpEditWindow *self)
 }
 
 static void
+on_value_changed(GtkWidget* widget, GValue* value, ModestConnectionSpecificSmtpEditWindow *self)
+{
+       on_change(widget, self);
+}
+
+static void
 on_combo_security_changed (GtkComboBox *widget, gpointer user_data)
 {
        ModestConnectionSpecificSmtpEditWindow *self = 
@@ -235,7 +241,7 @@ modest_connection_specific_smtp_edit_window_init (ModestConnectionSpecificSmtpEd
                priv->entry_port = GTK_WIDGET (hildon_number_editor_new (0, 65535));
        caption = hildon_caption_new (sizegroup, 
                _("mcen_li_emailsetup_smtp"), priv->entry_port, NULL, HILDON_CAPTION_OPTIONAL);
-       g_signal_connect(G_OBJECT(priv->entry_port), "changed", G_CALLBACK(on_change), self);
+       g_signal_connect(G_OBJECT(priv->entry_port), "notify::value", G_CALLBACK(on_value_changed), self);
        gtk_widget_show (priv->entry_port);
        gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
        gtk_widget_show (caption);