1
1

Added doxygen documentation for touched functions.

Signed-off-by: Slava Zanko <slavazanko@gmail.com>
Этот коммит содержится в:
Slava Zanko 2010-10-07 12:15:50 +03:00
родитель a8aa5cf678
Коммит 89b905d83b

Просмотреть файл

@ -1318,7 +1318,7 @@ panel_new (const char *panel_name)
} }
/** Panel creation for specified directory. /** Panel creation for specified directory.
* @param panel_name the name of the panel for setup retieving * @param panel_name specifies the name of the panel for setup retieving
* @param the path of working panel directory. If path is NULL then panel will be created for current directory * @param the path of working panel directory. If path is NULL then panel will be created for current directory
* @returns new instance of WPanel * @returns new instance of WPanel
*/ */
@ -2371,7 +2371,10 @@ mark_file_down (WPanel * panel)
do_mark_file (panel, MARK_FORCE_DOWN); do_mark_file (panel, MARK_FORCE_DOWN);
} }
/* Incremental search of a file name in the panel */ /** Incremental search of a file name in the panel.
* @param panel instance of WPanel structure
* @param c_code key code
*/
static void static void
do_search (WPanel * panel, int c_code) do_search (WPanel * panel, int c_code)
{ {
@ -2475,6 +2478,9 @@ do_search (WPanel * panel, int c_code)
g_free (esc_str); g_free (esc_str);
} }
/** Start new search.
* @param panel instance of WPanel structure
*/
static void static void
start_search (WPanel * panel) start_search (WPanel * panel)
{ {