aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-preferences.c
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2009-05-06 21:04:12 +0800
committerCosimo Cecchi <cosimoc@gnome.org>2009-06-01 23:49:55 +0800
commitd3fc1349507da7d0bb6538a8e66fa3116bb6eec9 (patch)
tree1cb8c7bacef70eeb27e7bb21608f08fb6d37b5e1 /src/empathy-preferences.c
parent6a0da1dbef905ec7bf93e6d1c0eca6c6b8dfdb4a (diff)
downloadgsoc2013-empathy-d3fc1349507da7d0bb6538a8e66fa3116bb6eec9.tar
gsoc2013-empathy-d3fc1349507da7d0bb6538a8e66fa3116bb6eec9.tar.gz
gsoc2013-empathy-d3fc1349507da7d0bb6538a8e66fa3116bb6eec9.tar.bz2
gsoc2013-empathy-d3fc1349507da7d0bb6538a8e66fa3116bb6eec9.tar.lz
gsoc2013-empathy-d3fc1349507da7d0bb6538a8e66fa3116bb6eec9.tar.xz
gsoc2013-empathy-d3fc1349507da7d0bb6538a8e66fa3116bb6eec9.tar.zst
gsoc2013-empathy-d3fc1349507da7d0bb6538a8e66fa3116bb6eec9.zip
Add a new preference in the UI
Diffstat (limited to 'src/empathy-preferences.c')
-rw-r--r--src/empathy-preferences.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/empathy-preferences.c b/src/empathy-preferences.c
index 406db4c9f..d2ac53bb3 100644
--- a/src/empathy-preferences.c
+++ b/src/empathy-preferences.c
@@ -53,6 +53,7 @@ typedef struct {
GtkWidget *checkbutton_autoconnect;
GtkWidget *radiobutton_contact_list_sort_by_name;
GtkWidget *radiobutton_contact_list_sort_by_state;
+ GtkWidget *checkbutton_use_hash;
GtkWidget *checkbutton_sounds_enabled;
GtkWidget *checkbutton_sounds_disabled_away;
@@ -284,6 +285,9 @@ preferences_setup_widgets (EmpathyPreferences *preferences)
preferences_hookup_sensitivity (preferences,
EMPATHY_PREFS_LOCATION_PUBLISH,
preferences->checkbutton_location_reduce_accuracy);
+ preferences_hookup_toggle_button (preferences,
+ EMPATHY_PREFS_FILE_TRANSFER_USE_HASH,
+ preferences->checkbutton_use_hash);
id = empathy_conf_notify_add (empathy_conf_get (),
EMPATHY_PREFS_UI_COMPACT_CONTACT_LIST,
@@ -1128,6 +1132,7 @@ empathy_preferences_show (GtkWindow *parent)
"checkbutton_autoconnect", &preferences->checkbutton_autoconnect,
"radiobutton_contact_list_sort_by_name", &preferences->radiobutton_contact_list_sort_by_name,
"radiobutton_contact_list_sort_by_state", &preferences->radiobutton_contact_list_sort_by_state,
+ "checkbutton_use_hash", &preferences->checkbutton_use_hash,
"checkbutton_notifications_enabled", &preferences->checkbutton_notifications_enabled,
"checkbutton_notifications_disabled_away", &preferences->checkbutton_notifications_disabled_away,
"checkbutton_notifications_focus", &preferences->checkbutton_notifications_focus,