color_filter(.h): Fix The following parameters of ... are not documented:

parameter 'err_msg' or parameter 'add_cb'

Change-Id: Iea43833de7bbb12ce16c3363d26f70a2859e092c
Reviewed-on: https://code.wireshark.org/review/13543
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2016-01-26 09:05:53 +01:00 committed by Anders Broman
parent 0cc17787d6
commit bbb84a5aa3
1 changed files with 5 additions and 0 deletions

View File

@ -94,6 +94,7 @@ WS_DLL_PUBLIC gboolean tmp_color_filters_used(void);
* @param filt_nr a number 1-10 pointing to a temporary color
* @param filter the new filter-string
* @param disabled whether the filter-rule should be disabled
* @param err_msg a string with error message
*/
WS_DLL_PUBLIC gboolean
color_filters_set_tmp(guint8 filt_nr, const gchar *filter, gboolean disabled, gchar **err_msg);
@ -137,6 +138,8 @@ WS_DLL_PUBLIC void color_filters_clone(gpointer user_data, color_filter_add_cb_f
*
* @param path the path to the import file
* @param user_data will be returned by each call to to color_filter_add_cb()
* @param err_msg a string with error message
* @param add_cb the callback function to add color filter
* @return TRUE, if read succeeded
*/
WS_DLL_PUBLIC gboolean color_filters_import(const gchar *path, const gpointer user_data, gchar** err_msg, color_filter_add_cb_func add_cb);
@ -144,6 +147,8 @@ WS_DLL_PUBLIC gboolean color_filters_import(const gchar *path, const gpointer us
/** Read filters from the global filter file (not the users file).
*
* @param user_data will be returned by each call to to color_filter_add_cb()
* @param err_msg a string with error message
* @param add_cb the callback function to add color filter
* @return TRUE, if read succeeded
*/
WS_DLL_PUBLIC gboolean color_filters_read_globals(gpointer user_data, gchar** err_msg, color_filter_add_cb_func add_cb);