diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-12-16 21:31:00 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-12-22 17:46:18 +0800 |
commit | d78c414be20144cc84e697f2ad57600c4620423a (patch) | |
tree | 9366de51159379ab4ff6ebd8cf6899f08b2af4ea /src | |
parent | f2b53c32d44e3a670f266f542c571ff345cbfe55 (diff) | |
download | gsoc2013-empathy-d78c414be20144cc84e697f2ad57600c4620423a.tar gsoc2013-empathy-d78c414be20144cc84e697f2ad57600c4620423a.tar.gz gsoc2013-empathy-d78c414be20144cc84e697f2ad57600c4620423a.tar.bz2 gsoc2013-empathy-d78c414be20144cc84e697f2ad57600c4620423a.tar.lz gsoc2013-empathy-d78c414be20144cc84e697f2ad57600c4620423a.tar.xz gsoc2013-empathy-d78c414be20144cc84e697f2ad57600c4620423a.tar.zst gsoc2013-empathy-d78c414be20144cc84e697f2ad57600c4620423a.zip |
pass a second NULL pointer to gtk_dialog_new_with_buttons()
It makes gcc happier.
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 6c8fe1ca9..b88ff1839 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -559,7 +559,7 @@ account_dialog_create_edit_params_dialog (EmpathyAccountsDialog *dialog) subdialog = gtk_dialog_new_with_buttons (_("Edit Connection Parameters"), GTK_WINDOW (dialog), GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT, - NULL); + NULL, NULL); priv->setting_widget_object = empathy_account_widget_new_for_protocol (settings, FALSE); |