aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-09-07 17:44:21 +0000
committerChristian Grothoff <christian@grothoff.org>2013-09-07 17:44:21 +0000
commit6e8c38e7c162d4dc20d8aaab98fb431533d874f3 (patch)
tree7922023060ae39c4c0e46ca6754bc5259dcd1ec7
parent179f61007ce147f7face8a5771024559fa8d80f3 (diff)
downloadgnunet-gtk-6e8c38e7c162d4dc20d8aaab98fb431533d874f3.tar.gz
gnunet-gtk-6e8c38e7c162d4dc20d8aaab98fb431533d874f3.zip
-more doxygen fixes
-rw-r--r--src/fs/gnunet-fs-gtk.c3
-rw-r--r--src/fs/gnunet-fs-gtk_about.c2
-rw-r--r--src/fs/gnunet-fs-gtk_anonymity-widgets.c3
-rw-r--r--src/fs/gnunet-fs-gtk_common.c10
-rw-r--r--src/fs/gnunet-fs-gtk_common.h6
-rw-r--r--src/fs/gnunet-fs-gtk_event-handler.c16
-rw-r--r--src/fs/gnunet-fs-gtk_main-window-meta-data-context-menu.c1
-rw-r--r--src/fs/gnunet-fs-gtk_main-window-view-toggles.c19
-rw-r--r--src/fs/gnunet-fs-gtk_open-directory.c6
-rw-r--r--src/fs/gnunet-fs-gtk_publish-dialog.c4
-rw-r--r--src/fs/gnunet-fs-gtk_publish-edit-dialog.c8
-rw-r--r--src/fs/gnunet-fs-gtk_unindex.c2
12 files changed, 47 insertions, 33 deletions
diff --git a/src/fs/gnunet-fs-gtk.c b/src/fs/gnunet-fs-gtk.c
index e1261256..bb7ea15a 100644
--- a/src/fs/gnunet-fs-gtk.c
+++ b/src/fs/gnunet-fs-gtk.c
@@ -208,6 +208,8 @@ main_window_save_position (GtkWidget *main_window)
208 * and saves these into user's config file. 208 * and saves these into user's config file.
209 * 209 *
210 * @param main_window main window widget 210 * @param main_window main window widget
211 * @param event the event that we are handling
212 * @param user_data main window context
211 */ 213 */
212gboolean 214gboolean
213GNUNET_GTK_main_window_configure_event_cb (GtkWidget *main_window, 215GNUNET_GTK_main_window_configure_event_cb (GtkWidget *main_window,
@@ -302,6 +304,7 @@ GNUNET_FS_GTK_menu_quit_activate_cb (GtkMenuItem *object,
302 * Callback invoked if the application is supposed to exit. 304 * Callback invoked if the application is supposed to exit.
303 * 305 *
304 * @param object origin of the quit event, unused 306 * @param object origin of the quit event, unused
307 * @param event the delete event
305 * @param user_data global builder instance, unused 308 * @param user_data global builder instance, unused
306 */ 309 */
307void 310void
diff --git a/src/fs/gnunet-fs-gtk_about.c b/src/fs/gnunet-fs-gtk_about.c
index e2950b31..e23b6694 100644
--- a/src/fs/gnunet-fs-gtk_about.c
+++ b/src/fs/gnunet-fs-gtk_about.c
@@ -31,7 +31,7 @@
31/** 31/**
32 * This displays an about window 32 * This displays an about window
33 * 33 *
34 * @param widget widget creating the event, unused 34 * @param dummy widget creating the event, unused
35 * @param data global builder, unused 35 * @param data global builder, unused
36 */ 36 */
37void 37void
diff --git a/src/fs/gnunet-fs-gtk_anonymity-widgets.c b/src/fs/gnunet-fs-gtk_anonymity-widgets.c
index e52f8a1b..9b6c21ab 100644
--- a/src/fs/gnunet-fs-gtk_anonymity-widgets.c
+++ b/src/fs/gnunet-fs-gtk_anonymity-widgets.c
@@ -28,12 +28,13 @@
28#include "gnunet-fs-gtk_anonymity-widgets.h" 28#include "gnunet-fs-gtk_anonymity-widgets.h"
29#include <gdk/gdk.h> 29#include <gdk/gdk.h>
30 30
31
31/** 32/**
32 * Spin button is changed, update its color. NOTE: This function will eventually 33 * Spin button is changed, update its color. NOTE: This function will eventually
33 * become obsolete as we migrate to the drop-down style of anonymity-level selection. 34 * become obsolete as we migrate to the drop-down style of anonymity-level selection.
34 * 35 *
35 * @param w the spin button that changed 36 * @param w the spin button that changed
36 * @param builder's closure, unused 37 * @param data the builder's closure, unused
37 */ 38 */
38void 39void
39GNUNET_GTK_anonymity_spin_button_value_changed_cb (GtkWidget * w, gpointer data) 40GNUNET_GTK_anonymity_spin_button_value_changed_cb (GtkWidget * w, gpointer data)
diff --git a/src/fs/gnunet-fs-gtk_common.c b/src/fs/gnunet-fs-gtk_common.c
index c8570833..f0746883 100644
--- a/src/fs/gnunet-fs-gtk_common.c
+++ b/src/fs/gnunet-fs-gtk_common.c
@@ -35,11 +35,11 @@
35 * (returns NULL for everything else). 35 * (returns NULL for everything else).
36 * Verifies UTF-8 strings. 36 * Verifies UTF-8 strings.
37 * 37 *
38 * @param format format of the @data 38 * @param format format of the @a data
39 * @param data data to convert 39 * @param data data to convert
40 * @param data_len length of the data buffer (in bytes) 40 * @param data_len length of the @a data buffer (in bytes)
41 * @return NULL if can't be converted, allocated string otherwise, 41 * @return NULL if can't be converted, allocated string otherwise,
42 * freeable with GNUNET_free* (). 42 * freeable with #GNUNET_free.
43 */ 43 */
44char * 44char *
45GNUNET_FS_GTK_dubious_meta_to_utf8 (enum EXTRACTOR_MetaFormat format, 45GNUNET_FS_GTK_dubious_meta_to_utf8 (enum EXTRACTOR_MetaFormat format,
@@ -82,7 +82,7 @@ GNUNET_FS_GTK_dubious_meta_to_utf8 (enum EXTRACTOR_MetaFormat format,
82 * 82 *
83 * @param cls closure (the GtkListStore) 83 * @param cls closure (the GtkListStore)
84 * @param plugin_name name of the plugin that produced this value; 84 * @param plugin_name name of the plugin that produced this value;
85 * special values can be used (i.e. '<zlib>' for zlib being 85 * special values can be used (i.e. '\<zlib\>' for zlib being
86 * used in the main libextractor library and yielding 86 * used in the main libextractor library and yielding
87 * meta data). 87 * meta data).
88 * @param type libextractor-type describing the meta data 88 * @param type libextractor-type describing the meta data
@@ -90,7 +90,7 @@ GNUNET_FS_GTK_dubious_meta_to_utf8 (enum EXTRACTOR_MetaFormat format,
90 * @param data_mime_type mime-type of data (not of the original file); 90 * @param data_mime_type mime-type of data (not of the original file);
91 * can be NULL (if mime-type is not known) 91 * can be NULL (if mime-type is not known)
92 * @param data actual meta-data found 92 * @param data actual meta-data found
93 * @param data_len number of bytes in data 93 * @param data_len number of bytes in @a data
94 * @return 0 to continue (always) 94 * @return 0 to continue (always)
95 */ 95 */
96int 96int
diff --git a/src/fs/gnunet-fs-gtk_common.h b/src/fs/gnunet-fs-gtk_common.h
index a50367e5..53990378 100644
--- a/src/fs/gnunet-fs-gtk_common.h
+++ b/src/fs/gnunet-fs-gtk_common.h
@@ -60,7 +60,7 @@ GNUNET_FS_GTK_setup_expiration_year_adjustment (GtkBuilder * builder);
60 * time (on midnight, January 1st of that year). 60 * time (on midnight, January 1st of that year).
61 * 61 *
62 * @param spin button with the year 62 * @param spin button with the year
63 * @param time converted from the spin button 63 * @return time converted from the spin button
64 */ 64 */
65struct GNUNET_TIME_Absolute 65struct GNUNET_TIME_Absolute
66GNUNET_FS_GTK_get_expiration_time (GtkSpinButton * spin); 66GNUNET_FS_GTK_get_expiration_time (GtkSpinButton * spin);
@@ -86,7 +86,7 @@ GNUNET_FS_GTK_mmap_and_scan (const char *filename,
86 * 86 *
87 * @param cls closure (the GtkListStore) 87 * @param cls closure (the GtkListStore)
88 * @param plugin_name name of the plugin that produced this value; 88 * @param plugin_name name of the plugin that produced this value;
89 * special values can be used (i.e. '<zlib>' for zlib being 89 * special values can be used (i.e. '\<zlib\>' for zlib being
90 * used in the main libextractor library and yielding 90 * used in the main libextractor library and yielding
91 * meta data). 91 * meta data).
92 * @param type libextractor-type describing the meta data 92 * @param type libextractor-type describing the meta data
@@ -94,7 +94,7 @@ GNUNET_FS_GTK_mmap_and_scan (const char *filename,
94 * @param data_mime_type mime-type of data (not of the original file); 94 * @param data_mime_type mime-type of data (not of the original file);
95 * can be NULL (if mime-type is not known) 95 * can be NULL (if mime-type is not known)
96 * @param data actual meta-data found 96 * @param data actual meta-data found
97 * @param data_len number of bytes in data 97 * @param data_len number of bytes in @a data
98 * @return 0 to continue (always) 98 * @return 0 to continue (always)
99 */ 99 */
100int 100int
diff --git a/src/fs/gnunet-fs-gtk_event-handler.c b/src/fs/gnunet-fs-gtk_event-handler.c
index de01865e..06a9a42d 100644
--- a/src/fs/gnunet-fs-gtk_event-handler.c
+++ b/src/fs/gnunet-fs-gtk_event-handler.c
@@ -1106,7 +1106,9 @@ populate_popup_with_sks_items (void *cls,
1106 * 1106 *
1107 * @param tm tree model underlying the tree view where the event happened 1107 * @param tm tree model underlying the tree view where the event happened
1108 * @param tab tab where the event happened 1108 * @param tab tab where the event happened
1109 * @param event_button the event 1109 * @param init_button which button triggered the popup, or 0 for none
1110 * @param event_time at what time was the popup triggered
1111 * @param iter location in the tree model selected at the time
1110 * @return FALSE if no menu could be popped up, 1112 * @return FALSE if no menu could be popped up,
1111 * TRUE if there is now a pop-up menu 1113 * TRUE if there is now a pop-up menu
1112 */ 1114 */
@@ -2750,7 +2752,7 @@ struct AddDirectoryEntryContext
2750 2752
2751 /** 2753 /**
2752 * Do we need to check if the given entry already exists to 2754 * Do we need to check if the given entry already exists to
2753 * avoid adding it twice? Set to YES if 'add_directory_entry' 2755 * avoid adding it twice? Set to #GNUNET_YES if #add_directory_entry
2754 * is called upon directory completion (so we might see all 2756 * is called upon directory completion (so we might see all
2755 * entries again) and to NO if this is the initial download 2757 * entries again) and to NO if this is the initial download
2756 * and we're calling during a 'PROGRESS' event. 2758 * and we're calling during a 'PROGRESS' event.
@@ -2774,14 +2776,14 @@ struct AddDirectoryEntryContext
2774 * @param cls closure, our 'struct AddDirectoryEntryContext*' 2776 * @param cls closure, our 'struct AddDirectoryEntryContext*'
2775 * @param filename name of the file in the directory 2777 * @param filename name of the file in the directory
2776 * @param uri URI of the file, NULL for the directory itself 2778 * @param uri URI of the file, NULL for the directory itself
2777 * @param metadata metadata for the file; metadata for 2779 * @param meta metadata for the file; metadata for
2778 * the directory if everything else is NULL/zero 2780 * the directory if everything else is NULL/zero
2779 * @param length length of the available data for the file 2781 * @param length length of the available data for the file
2780 * (of type size_t since data must certainly fit 2782 * (of type size_t since data must certainly fit
2781 * into memory; if files are larger than size_t 2783 * into memory; if files are larger than size_t
2782 * permits, then they will certainly not be 2784 * permits, then they will certainly not be
2783 * embedded with the directory itself). 2785 * embedded with the directory itself).
2784 * @param data data available for the file (length bytes) 2786 * @param data data available for the file (@a length bytes)
2785 */ 2787 */
2786static void 2788static void
2787add_directory_entry (void *cls, const char *filename, 2789add_directory_entry (void *cls, const char *filename,
@@ -2847,7 +2849,7 @@ add_directory_entry (void *cls, const char *filename,
2847 * @param completed number of bytes we have completed 2849 * @param completed number of bytes we have completed
2848 * @param block_data current block we've downloaded 2850 * @param block_data current block we've downloaded
2849 * @param offset offset of block_data in the overall file 2851 * @param offset offset of block_data in the overall file
2850 * @param block_size number of bytes in block_data 2852 * @param block_size number of bytes in @a block_data
2851 * @param depth depth of the block in the ECRS tree 2853 * @param depth depth of the block in the ECRS tree
2852 */ 2854 */
2853static void 2855static void
@@ -3583,7 +3585,9 @@ copy_publish_uri_to_clipboard_ctx_menu (GtkMenuItem *item, gpointer user_data)
3583 * 3585 *
3584 * @param tm tree model underlying the tree view where the event happened 3586 * @param tm tree model underlying the tree view where the event happened
3585 * @param tab tab where the event happened 3587 * @param tab tab where the event happened
3586 * @param event_button the event 3588 * @param init_button number of the button that triggered the popup
3589 * @param event_time GTK time when the event was generated
3590 * @param iter selected element in @a tm for the popup
3587 * @return FALSE if no menu could be popped up, 3591 * @return FALSE if no menu could be popped up,
3588 * TRUE if there is now a pop-up menu 3592 * TRUE if there is now a pop-up menu
3589 */ 3593 */
diff --git a/src/fs/gnunet-fs-gtk_main-window-meta-data-context-menu.c b/src/fs/gnunet-fs-gtk_main-window-meta-data-context-menu.c
index 8724d20c..308b2582 100644
--- a/src/fs/gnunet-fs-gtk_main-window-meta-data-context-menu.c
+++ b/src/fs/gnunet-fs-gtk_main-window-meta-data-context-menu.c
@@ -152,6 +152,7 @@ do_metadata_popup_menu (int button,
152 * If it was a right click, pop up the context menu. 152 * If it was a right click, pop up the context menu.
153 * 153 *
154 * @param widget the tree view widget 154 * @param widget the tree view widget
155 * @param event the button press event
155 * @param user_data the gtk builder of the main window 156 * @param user_data the gtk builder of the main window
156 */ 157 */
157gboolean 158gboolean
diff --git a/src/fs/gnunet-fs-gtk_main-window-view-toggles.c b/src/fs/gnunet-fs-gtk_main-window-view-toggles.c
index fea122ea..af87e932 100644
--- a/src/fs/gnunet-fs-gtk_main-window-view-toggles.c
+++ b/src/fs/gnunet-fs-gtk_main-window-view-toggles.c
@@ -35,7 +35,8 @@
35 * @param toggle_menu name of menu entry 35 * @param toggle_menu name of menu entry
36 */ 36 */
37static void 37static void
38toggle_view (const char *toggled_widget, const char *toggle_menu) 38toggle_view (const char *toggled_widget,
39 const char *toggle_menu)
39{ 40{
40 GtkCheckMenuItem *mi; 41 GtkCheckMenuItem *mi;
41 GtkWidget *widget; 42 GtkWidget *widget;
@@ -53,10 +54,11 @@ toggle_view (const char *toggled_widget, const char *toggle_menu)
53 * Preview view is toggled. 54 * Preview view is toggled.
54 * 55 *
55 * @param dummy widget triggering the event 56 * @param dummy widget triggering the event
56 * @param gpointer main window builder (unused) 57 * @param data main window builder (unused)
57 */ 58 */
58void 59void
59GNUNET_GTK_main_menu_view_preview_toggled_cb (GtkWidget * dummy, gpointer data) 60GNUNET_GTK_main_menu_view_preview_toggled_cb (GtkWidget * dummy,
61 gpointer data)
60{ 62{
61 toggle_view ("GNUNET_GTK_main_window_preview_image", 63 toggle_view ("GNUNET_GTK_main_window_preview_image",
62 "GNUNET_GTK_main_menu_view_preview"); 64 "GNUNET_GTK_main_menu_view_preview");
@@ -67,23 +69,26 @@ GNUNET_GTK_main_menu_view_preview_toggled_cb (GtkWidget * dummy, gpointer data)
67 * Metadata view is toggled. 69 * Metadata view is toggled.
68 * 70 *
69 * @param dummy widget triggering the event 71 * @param dummy widget triggering the event
70 * @param gpointer main window builder (unused) 72 * @param data main window builder (unused)
71 */ 73 */
72void 74void
73GNUNET_GTK_main_menu_view_metadata_toggled_cb (GtkWidget * dummy, gpointer data) 75GNUNET_GTK_main_menu_view_metadata_toggled_cb (GtkWidget * dummy,
76 gpointer data)
74{ 77{
75 toggle_view ("GNUNET_GTK_main_window_metadata_treeview", 78 toggle_view ("GNUNET_GTK_main_window_metadata_treeview",
76 "GNUNET_GTK_main_menu_view_metadata"); 79 "GNUNET_GTK_main_menu_view_metadata");
77} 80}
78 81
82
79/** 83/**
80 * Preview view is toggled. 84 * Preview view is toggled.
81 * 85 *
82 * @param dummy widget triggering the event 86 * @param dummy widget triggering the event
83 * @param gpointer main window builder (unused) 87 * @param data main window builder (unused)
84 */ 88 */
85void 89void
86GNUNET_GTK_main_menu_view_search_toggled_cb (GtkWidget * dummy, gpointer data) 90GNUNET_GTK_main_menu_view_search_toggled_cb (GtkWidget * dummy,
91 gpointer data)
87{ 92{
88 toggle_view ("main_window_search_hbox", 93 toggle_view ("main_window_search_hbox",
89 "GNUNET_GTK_main_menu_search_preview"); 94 "GNUNET_GTK_main_menu_search_preview");
diff --git a/src/fs/gnunet-fs-gtk_open-directory.c b/src/fs/gnunet-fs-gtk_open-directory.c
index 7cefe7af..ae05b2e2 100644
--- a/src/fs/gnunet-fs-gtk_open-directory.c
+++ b/src/fs/gnunet-fs-gtk_open-directory.c
@@ -56,14 +56,14 @@ struct AddChildContext
56 * @param cls closure, our 'struct AddChildContext*' 56 * @param cls closure, our 'struct AddChildContext*'
57 * @param filename name of the file in the directory 57 * @param filename name of the file in the directory
58 * @param uri URI of the file 58 * @param uri URI of the file
59 * @param metadata metadata for the file; metadata for 59 * @param meta metadata for the file; metadata for
60 * the directory if everything else is NULL/zero 60 * the directory if everything else is NULL/zero
61 * @param length length of the available data for the file 61 * @param length length of the available data for the file
62 * (of type size_t since data must certainly fit 62 * (of type size_t since data must certainly fit
63 * into memory; if files are larger than size_t 63 * into memory; if files are larger than size_t
64 * permits, then they will certainly not be 64 * permits, then they will certainly not be
65 * embedded with the directory itself). 65 * embedded with the directory itself).
66 * @param data data available for the file (length bytes) 66 * @param data data available for the file (@a length bytes)
67 */ 67 */
68static void 68static void
69add_child (void *cls, const char *filename, const struct GNUNET_FS_Uri *uri, 69add_child (void *cls, const char *filename, const struct GNUNET_FS_Uri *uri,
@@ -140,7 +140,7 @@ GNUNET_GTK_open_directory_dialog_response_cb (GtkDialog *dialog,
140 * file and then display a new tab with its contents. 140 * file and then display a new tab with its contents.
141 * 141 *
142 * @param dummy the menu entry 142 * @param dummy the menu entry
143 * @param user_data the main dialog builder, unused 143 * @param data the main dialog builder, unused
144 */ 144 */
145void 145void
146GNUNET_GTK_main_menu_file_open_gnunet_directory_activate_cb (GtkWidget * dummy, 146GNUNET_GTK_main_menu_file_open_gnunet_directory_activate_cb (GtkWidget * dummy,
diff --git a/src/fs/gnunet-fs-gtk_publish-dialog.c b/src/fs/gnunet-fs-gtk_publish-dialog.c
index 8335ba4a..6d4cca18 100644
--- a/src/fs/gnunet-fs-gtk_publish-dialog.c
+++ b/src/fs/gnunet-fs-gtk_publish-dialog.c
@@ -1288,7 +1288,7 @@ GNUNET_FS_GTK_progress_dialog_cancel_button_clicked_cb (GtkButton *button,
1288 * 1288 *
1289 * @param widget the widget emitting the event 1289 * @param widget the widget emitting the event
1290 * @param event the event 1290 * @param event the event
1291 * @param user_data progress dialog context of our window 1291 * @param cls progress dialog context of our window
1292 * @return TRUE to refuse to close 1292 * @return TRUE to refuse to close
1293 */ 1293 */
1294gboolean 1294gboolean
@@ -2336,7 +2336,7 @@ GNUNET_GTK_master_publish_dialog_cancel_button_clicked_cb (GtkButton * button,
2336 * allowed and if so, close it. 2336 * allowed and if so, close it.
2337 * 2337 *
2338 * @param widget the widget that generated the close event 2338 * @param widget the widget that generated the close event
2339 * @param even the close event 2339 * @param event the close event
2340 * @param user_data master publishing dialog context of our window 2340 * @param user_data master publishing dialog context of our window
2341 * @return TRUE to refuse to close (stops other handlers from being invoked) 2341 * @return TRUE to refuse to close (stops other handlers from being invoked)
2342 * FALSE to allow closing the window 2342 * FALSE to allow closing the window
diff --git a/src/fs/gnunet-fs-gtk_publish-edit-dialog.c b/src/fs/gnunet-fs-gtk_publish-edit-dialog.c
index 22d6e6ed..d717779f 100644
--- a/src/fs/gnunet-fs-gtk_publish-edit-dialog.c
+++ b/src/fs/gnunet-fs-gtk_publish-edit-dialog.c
@@ -553,7 +553,7 @@ GNUNET_GTK_edit_publication_add_button_clicked_cb (GtkButton * button,
553 * The user has pushed the 'del' button for metadata. 553 * The user has pushed the 'del' button for metadata.
554 * If there is a metadata selected, remove it from the list store. 554 * If there is a metadata selected, remove it from the list store.
555 * 555 *
556 * @param widget the button 556 * @param button the delete button
557 * @param user_data the 'struct EditPublicationDialogContext' 557 * @param user_data the 'struct EditPublicationDialogContext'
558 */ 558 */
559void 559void
@@ -667,7 +667,7 @@ update_confirm_sensitivity (struct EditPublicationDialogContext *ctx)
667 * The user has pushed the 'del' button for the keyword. 667 * The user has pushed the 'del' button for the keyword.
668 * If there is a keyword selected, remove it from the list store. 668 * If there is a keyword selected, remove it from the list store.
669 * 669 *
670 * @param widget the button 670 * @param button the button
671 * @param user_data the 'struct EditPublicationDialogContext' 671 * @param user_data the 'struct EditPublicationDialogContext'
672 */ 672 */
673void 673void
@@ -697,7 +697,7 @@ GNUNET_GTK_edit_publication_keyword_list_del_button_clicked_cb (GtkButton *
697 * The user has pushed the 'add' button for the keyword (or pressed RETURN). 697 * The user has pushed the 'add' button for the keyword (or pressed RETURN).
698 * If there is a keyword in the line, add it to the list store. 698 * If there is a keyword in the line, add it to the list store.
699 * 699 *
700 * @param widget the entry line, or NULL (if we are called from 'RETURN') 700 * @param button the add button, or NULL (if we are called from 'RETURN')
701 * @param user_data the 'struct EditPublicationDialogContext' 701 * @param user_data the 'struct EditPublicationDialogContext'
702 */ 702 */
703void 703void
@@ -802,7 +802,7 @@ GNUNET_GTK_edit_publication_window_delete_event_cb (GtkWidget * widget,
802 * field and the liststore to check the current value 802 * field and the liststore to check the current value
803 * against in 'meta_liststore'. 803 * against in 'meta_liststore'.
804 * @param plugin_name name of the plugin that produced this value; 804 * @param plugin_name name of the plugin that produced this value;
805 * special values can be used (i.e. '<zlib>' for zlib being 805 * special values can be used (i.e. '\<zlib\>' for zlib being
806 * used in the main libextractor library and yielding 806 * used in the main libextractor library and yielding
807 * meta data). 807 * meta data).
808 * @param type libextractor-type describing the meta data 808 * @param type libextractor-type describing the meta data
diff --git a/src/fs/gnunet-fs-gtk_unindex.c b/src/fs/gnunet-fs-gtk_unindex.c
index 83236142..a4fc4c61 100644
--- a/src/fs/gnunet-fs-gtk_unindex.c
+++ b/src/fs/gnunet-fs-gtk_unindex.c
@@ -379,7 +379,7 @@ add_indexed_file (void *cls, const char *filename,
379 * User selected "List indexed files..." in menu. Display dialog. 379 * User selected "List indexed files..." in menu. Display dialog.
380 * 380 *
381 * @param dummy the menu entry 381 * @param dummy the menu entry
382 * @param user_data the main dialog builder, unused 382 * @param data the main dialog builder, unused
383 */ 383 */
384void 384void
385GNUNET_GTK_main_menu_unindex_activate_cb (GtkWidget * dummy, 385GNUNET_GTK_main_menu_unindex_activate_cb (GtkWidget * dummy,