diff options
author | Christian Grothoff <christian@grothoff.org> | 2005-08-28 20:58:41 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2005-08-28 20:58:41 +0000 |
commit | dad8a8b0a613757e9812b3093b88a29a93b9c045 (patch) | |
tree | 555932515e5e99f514d8f507e6b99f0ede82a5e4 | |
parent | 398f558277ea607ae9101aae32b702a1b17ba260 (diff) | |
download | gnunet-gtk-dad8a8b0a613757e9812b3093b88a29a93b9c045.tar.gz gnunet-gtk-dad8a8b0a613757e9812b3093b88a29a93b9c045.zip |
fixing anonymity level bug
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | gnunet-gtk.glade | 1 | ||||
-rw-r--r-- | src/plugins/fs/search.c | 1 | ||||
-rw-r--r-- | src/plugins/fs/upload.c | 4 |
4 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,7 @@ | |||
1 | Sun Aug 28 01:17:43 PDT 2005 | ||
2 | Fixed various minor bugs, cleaned up name selection for downloads. | ||
3 | Releasing 0.7.0. | ||
4 | |||
1 | Tue Aug 23 00:47:31 PDT 2005 | 5 | Tue Aug 23 00:47:31 PDT 2005 |
2 | Fixed bugs in shutdown sequence (unclean with respect to LOG, | 6 | Fixed bugs in shutdown sequence (unclean with respect to LOG, |
3 | resulted in warnings under certain circumstances). | 7 | resulted in warnings under certain circumstances). |
diff --git a/gnunet-gtk.glade b/gnunet-gtk.glade index fd9b22b9..1fc925bb 100644 --- a/gnunet-gtk.glade +++ b/gnunet-gtk.glade | |||
@@ -1820,7 +1820,6 @@ Thank you, | |||
1820 | <child> | 1820 | <child> |
1821 | <widget class="GtkCheckButton" id="deepIndexCheckButton"> | 1821 | <widget class="GtkCheckButton" id="deepIndexCheckButton"> |
1822 | <property name="visible">True</property> | 1822 | <property name="visible">True</property> |
1823 | <property name="sensitive">False</property> | ||
1824 | <property name="tooltip" translatable="yes">Controls if GNUnet should also produce information for individual files inside of a directory, as opposed to only allowing the directory itself to be found directly. Only applies for recursive uploads.</property> | 1823 | <property name="tooltip" translatable="yes">Controls if GNUnet should also produce information for individual files inside of a directory, as opposed to only allowing the directory itself to be found directly. Only applies for recursive uploads.</property> |
1825 | <property name="can_focus">True</property> | 1824 | <property name="can_focus">True</property> |
1826 | <property name="relief">GTK_RELIEF_NORMAL</property> | 1825 | <property name="relief">GTK_RELIEF_NORMAL</property> |
diff --git a/src/plugins/fs/search.c b/src/plugins/fs/search.c index e8006ac0..0cd5040c 100644 --- a/src/plugins/fs/search.c +++ b/src/plugins/fs/search.c | |||
@@ -148,6 +148,7 @@ GtkWidget * getAnonymityButtonFromTM(GtkTreeModel * model) { | |||
148 | return list->anonymityButton; | 148 | return list->anonymityButton; |
149 | list = list->next; | 149 | list = list->next; |
150 | } | 150 | } |
151 | BREAK(); | ||
151 | return NULL; | 152 | return NULL; |
152 | } | 153 | } |
153 | 154 | ||
diff --git a/src/plugins/fs/upload.c b/src/plugins/fs/upload.c index f84d3f07..778829d4 100644 --- a/src/plugins/fs/upload.c +++ b/src/plugins/fs/upload.c | |||
@@ -373,7 +373,7 @@ void on_fsinsertuploadbutton_clicked(gpointer dummy, | |||
373 | ECRS_SEARCH_INFIX); | 373 | ECRS_SEARCH_INFIX); |
374 | FSUI_uploadAll(ctx, | 374 | FSUI_uploadAll(ctx, |
375 | filename, | 375 | filename, |
376 | getAnonymityLevel(metaXML, | 376 | getAnonymityLevel(getMainXML(), |
377 | "uploadAnonymityLevelSpinButton"), | 377 | "uploadAnonymityLevelSpinButton"), |
378 | doIndex, | 378 | doIndex, |
379 | (TRUE == gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(deepIndex))) | 379 | (TRUE == gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(deepIndex))) |
@@ -384,7 +384,7 @@ void on_fsinsertuploadbutton_clicked(gpointer dummy, | |||
384 | } else { | 384 | } else { |
385 | FSUI_upload(ctx, | 385 | FSUI_upload(ctx, |
386 | filename, | 386 | filename, |
387 | getAnonymityLevel(metaXML, | 387 | getAnonymityLevel(getMainXML(), |
388 | "uploadAnonymityLevelSpinButton"), | 388 | "uploadAnonymityLevelSpinButton"), |
389 | doIndex, | 389 | doIndex, |
390 | NO, | 390 | NO, |