aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/addressbook-config.c
diff options
context:
space:
mode:
authorHans Petter Jansson <hpj@ximian.com>2004-02-27 05:01:41 +0800
committerHans Petter <hansp@src.gnome.org>2004-02-27 05:01:41 +0800
commit9a4ee04a76f07a0183582b377260b9c37551a0ff (patch)
treef26e533f3dabb5bf28d76e7b23954a6538aa9276 /addressbook/gui/component/addressbook-config.c
parentbac1a59d59bb0326bb8b634bbf6ec973b20efd16 (diff)
downloadgsoc2013-evolution-9a4ee04a76f07a0183582b377260b9c37551a0ff.tar
gsoc2013-evolution-9a4ee04a76f07a0183582b377260b9c37551a0ff.tar.gz
gsoc2013-evolution-9a4ee04a76f07a0183582b377260b9c37551a0ff.tar.bz2
gsoc2013-evolution-9a4ee04a76f07a0183582b377260b9c37551a0ff.tar.lz
gsoc2013-evolution-9a4ee04a76f07a0183582b377260b9c37551a0ff.tar.xz
gsoc2013-evolution-9a4ee04a76f07a0183582b377260b9c37551a0ff.tar.zst
gsoc2013-evolution-9a4ee04a76f07a0183582b377260b9c37551a0ff.zip
Move unused variable declaration inside notyet conditional.
2004-02-26 Hans Petter Jansson <hpj@ximian.com> * util/eab-destination.c (name_and_email_cb): Move unused variable declaration inside notyet conditional. * printing/e-contact-print.c: Include gal/util/e-util.h * gui/merging/eab-contact-compare.c (eab_contact_locate_match): Cast callback to an EBookCallback. (eab_contact_locate_match_full): Ditto. * gui/contact-editor/e-contact-quick-add.c (quick_add_set_name): Remove unused variable and cast 3rd arg to e_contact_set () (perhaps this should take a gconstpointer?). * gui/contact-editor/e-contact-editor-im.c (setup_service_optmenu): Remove unused variable. * gui/component/select-names/e-select-names.c (e_select_names_init): Cast the vbox to a GtkBox. * gui/component/addressbook-config.c (dialog_to_source): Correctly cast the spin button to a GtkSpinButton, not a GtkEntry. * gui/component/addressbook-component.c (load_primary_selection): Remove unused variable. svn path=/trunk/; revision=24898
Diffstat (limited to 'addressbook/gui/component/addressbook-config.c')
-rw-r--r--addressbook/gui/component/addressbook-config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/component/addressbook-config.c b/addressbook/gui/component/addressbook-config.c
index eaf0093c77..9d4123034e 100644
--- a/addressbook/gui/component/addressbook-config.c
+++ b/addressbook/gui/component/addressbook-config.c
@@ -240,7 +240,7 @@ dialog_to_source (AddressbookSourceDialog *dialog, ESource *source, gboolean tem
#ifdef HAVE_LDAP
e_source_set_property (source, "email_addr", gtk_entry_get_text (GTK_ENTRY (dialog->email)));
e_source_set_property (source, "binddn", gtk_entry_get_text (GTK_ENTRY (dialog->binddn)));
- str = g_strdup_printf ("%d", gtk_spin_button_get_value_as_int (GTK_ENTRY (dialog->limit_spinbutton)));
+ str = g_strdup_printf ("%d", gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (dialog->limit_spinbutton)));
e_source_set_property (source, "limit", str);
g_free (str);
e_source_set_property (source, "ssl", ldap_unparse_ssl (dialog->ssl));