Skip to content

Commit

Permalink
Remove only remaining g_signal_connect_data
Browse files Browse the repository at this point in the history
  • Loading branch information
danirabbit committed Jul 2, 2024
1 parent d8f9297 commit 3fc317f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Dialogs/Imap/ImapDialog.vala
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public class OnlineAccounts.ImapDialog : Gtk.Window {
private Gtk.ComboBoxText smtp_encryption_combobox;
private Gtk.Entry smtp_password_entry;
private Gtk.Entry smtp_username_entry;
private Gtk.Revealer smtp_revealer;
private Gtk.SpinButton imap_port_spin;
private Gtk.SpinButton imap_refresh_interval_spin;
private Gtk.SpinButton smtp_port_spin;
Expand Down Expand Up @@ -158,7 +159,7 @@ public class OnlineAccounts.ImapDialog : Gtk.Window {
smtp_credentials.attach (smtp_password_label, 0, 1);
smtp_credentials.attach (smtp_password_entry, 1, 1);

var smtp_revealer = new Gtk.Revealer () {
smtp_revealer = new Gtk.Revealer () {
child = smtp_credentials
};

Expand Down

0 comments on commit 3fc317f

Please sign in to comment.