diff options
author | Christian Grothoff <christian@grothoff.org> | 2013-09-10 19:48:20 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2013-09-10 19:48:20 +0000 |
commit | 4a0ac2fc2b6d4fceac3e07315226f66abb6ea8dd (patch) | |
tree | 85436367b0622887274673a9f2b40f58a5d312d7 | |
parent | 71a7ffc12e0adf07336690eeed6e4a7bdfcf522d (diff) | |
download | gnunet-gtk-4a0ac2fc2b6d4fceac3e07315226f66abb6ea8dd.tar.gz gnunet-gtk-4a0ac2fc2b6d4fceac3e07315226f66abb6ea8dd.zip |
use subsystem names, not ego names
-rw-r--r-- | src/setup/gnunet-setup-gns.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/setup/gnunet-setup-gns.c b/src/setup/gnunet-setup-gns.c index 48a8ef59..e96e8973 100644 --- a/src/setup/gnunet-setup-gns.c +++ b/src/setup/gnunet-setup-gns.c | |||
@@ -2037,7 +2037,7 @@ GNUNET_setup_gns_shorten_zone_selection_radiobutton_toggled_cb (GtkToggleButton | |||
2037 | gpointer user_data) | 2037 | gpointer user_data) |
2038 | { | 2038 | { |
2039 | if (gtk_toggle_button_get_active (togglebutton)) | 2039 | if (gtk_toggle_button_get_active (togglebutton)) |
2040 | load_zone ("short-zone"); | 2040 | load_zone ("gns-short"); |
2041 | } | 2041 | } |
2042 | 2042 | ||
2043 | 2043 | ||
@@ -2053,7 +2053,7 @@ GNUNET_setup_gns_private_zone_selection_radiobutton_toggled_cb (GtkToggleButton | |||
2053 | gpointer user_data) | 2053 | gpointer user_data) |
2054 | { | 2054 | { |
2055 | if (gtk_toggle_button_get_active (togglebutton)) | 2055 | if (gtk_toggle_button_get_active (togglebutton)) |
2056 | load_zone ("private-zone"); | 2056 | load_zone ("gns-private"); |
2057 | } | 2057 | } |
2058 | 2058 | ||
2059 | 2059 | ||
@@ -2069,7 +2069,7 @@ GNUNET_setup_gns_master_zone_selection_radiobutton_toggled_cb (GtkToggleButton * | |||
2069 | gpointer user_data) | 2069 | gpointer user_data) |
2070 | { | 2070 | { |
2071 | if (gtk_toggle_button_get_active (togglebutton)) | 2071 | if (gtk_toggle_button_get_active (togglebutton)) |
2072 | load_zone ("master-zone"); | 2072 | load_zone ("gns-master"); |
2073 | } | 2073 | } |
2074 | 2074 | ||
2075 | 2075 | ||
@@ -2097,7 +2097,7 @@ GNUNET_SETUP_gns_init () | |||
2097 | tv = GTK_TREE_VIEW (GNUNET_SETUP_get_object ("GNUNET_setup_gns_main_treeview")); | 2097 | tv = GTK_TREE_VIEW (GNUNET_SETUP_get_object ("GNUNET_setup_gns_main_treeview")); |
2098 | tm = GTK_TREE_MODEL (ts); | 2098 | tm = GTK_TREE_MODEL (ts); |
2099 | n2r = GNUNET_CONTAINER_multihashmap_create (128, GNUNET_NO); | 2099 | n2r = GNUNET_CONTAINER_multihashmap_create (128, GNUNET_NO); |
2100 | load_zone ("master-zone"); | 2100 | load_zone ("gns-master"); |
2101 | } | 2101 | } |
2102 | 2102 | ||
2103 | 2103 | ||