diff options
author | Marco Barisione <marco.barisione@collabora.co.uk> | 2013-07-29 15:20:25 +0800 |
---|---|---|
committer | Marco Barisione <marco.barisione@collabora.co.uk> | 2013-08-20 18:03:07 +0800 |
commit | 540509cdee5b939f9965ae0fb6106a3b40a2ae3d (patch) | |
tree | 183afafaf3897b3e8119bebe2e6fbdf9763c5a02 /src | |
parent | b16515893aeebd0dbd1623c6928f467cc0a17b63 (diff) | |
download | gsoc2013-empathy-540509cdee5b939f9965ae0fb6106a3b40a2ae3d.tar.gz gsoc2013-empathy-540509cdee5b939f9965ae0fb6106a3b40a2ae3d.tar.zst gsoc2013-empathy-540509cdee5b939f9965ae0fb6106a3b40a2ae3d.zip |
account-widget: add an "action-area" property
This allows user of the class to get the buttons packed in a different
widget, for instance the one returned by gtk_dialog_get_action_area.
https://bugzilla.gnome.org/show_bug.cgi?id=699492
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-accounts-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c index aa1f9ab31..16338337e 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -594,7 +594,7 @@ account_dialog_create_edit_params_dialog (EmpathyAccountsDialog *dialog) gtk_window_set_resizable (GTK_WINDOW (subdialog), FALSE); priv->setting_widget = (TpawAccountWidget *) - tpaw_account_widget_new_for_protocol (settings, FALSE); + tpaw_account_widget_new_for_protocol (settings, NULL, FALSE); g_object_add_weak_pointer (G_OBJECT (priv->setting_widget), (gpointer *) &priv->setting_widget); |