From 79db59d0190be414a9d379bdd7c01b127d3a85d4 Mon Sep 17 00:00:00 2001 From: Matthew Brush Date: Sat, 15 Jun 2013 12:45:45 -0700 Subject: [PATCH] Add API docs for search_show_find_in_files_dialog() This function is used in File Browser plugin and in Tree Browser, GProject, and GeanyPrj plugins from Geany-Plugins. --- src/search.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/search.c b/src/search.c index 2ccc1e98..893bc684 100644 --- a/src/search.c +++ b/src/search.c @@ -1017,8 +1017,14 @@ static void create_fif_dialog(void) } -/* dir is the directory to search in (UTF-8 encoding), may be NULL to determine it the usual way - * by using the current file's path */ +/** + * Shows the Find in Files dialog. + * + * @param dir The directory to search in (UTF-8 encoding). May be @c NULL + * to determine it the usual way by using the current document's path. + * + * @since 0.14, plugin API 53 + */ void search_show_find_in_files_dialog(const gchar *dir) { search_show_find_in_files_dialog_full(NULL, dir);