summaryrefslogtreecommitdiff
path: root/ui/packet_list_utils.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-04-14 20:20:24 +0200
committerAnders Broman <a.broman58@gmail.com>2014-04-14 20:20:38 +0000
commitbcb6f09f6f01e5cde635ea5a640bd9e671361447 (patch)
treeb7ad35fdeb37fcd6fd5bdcc5210b376bf161a759 /ui/packet_list_utils.h
parent1fceb512f7f5fb3e2018dca7dc0fe541c3fbeef7 (diff)
downloadwireshark-bcb6f09f6f01e5cde635ea5a640bd9e671361447.tar.gz
Fix warning when generate documentation (doxygen)
ui/packet_list_utils.h:32: warning: argument 'IN' of command @param is not found in the argument list of right_justify_column(gint col, capture_file *cf) ui/packet_list_utils.h:32: warning: argument 'IN' of command @param is not found in the argument list of right_justify_column(gint col, capture_file *cf) ui/packet_list_utils.h:32: warning: The following parameters of right_justify_column(gint col, capture_file *cf) are not documented: parameter 'col' parameter 'cf' ui/packet_list_utils.h:42: warning: argument 'IN' of command @param is not found in the argument list of resolve_column(gint col, capture_file *cf) ui/packet_list_utils.h:42: warning: argument 'IN' of command @param is not found in the argument list of resolve_column(gint col, capture_file *cf) ui/packet_list_utils.h:42: warning: The following parameters of resolve_column(gint col, capture_file *cf) are not documented: parameter 'col' parameter 'cf' Change-Id: I15c7046a36cc72d9904002946eab4dec81ab6861 Reviewed-on: https://code.wireshark.org/review/1132 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'ui/packet_list_utils.h')
-rw-r--r--ui/packet_list_utils.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/packet_list_utils.h b/ui/packet_list_utils.h
index c20a41ab5b..08b6310fa5 100644
--- a/ui/packet_list_utils.h
+++ b/ui/packet_list_utils.h
@@ -32,8 +32,8 @@ extern "C" {
/**
* Check to see if a column should be right justified.
*
- * @param [IN] col The column number.
- * @param [IN] cf The capture file containing the packet data.
+ * @param [in] col The column number.
+ * @param [in] cf The capture file containing the packet data.
*
* @return TRUE if the column should be right justified, FALSE otherwise.
*/
@@ -42,8 +42,8 @@ gboolean right_justify_column (gint col, capture_file *cf);
/**
* Check to see if a column's data should be resolved.
*
- * @param [IN] col The column number.
- * @param [IN] cf The capture file containing the packet data.
+ * @param [in] col The column number.
+ * @param [in] cf The capture file containing the packet data.
*
* @return TRUE if resolution is required, FALSE otherwise.
*/