aboutsummaryrefslogtreecommitdiffstats
path: root/ui/packet_list_utils.h
AgeCommit message (Collapse)AuthorFilesLines
2014-04-14Fix warning when generate documentation (doxygen)Alexis La Goutte1-4/+4
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>
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2013-12-15Fix warning found by doxygenAlexis La Goutte1-4/+4
svn path=/trunk/; revision=54130
2013-08-10Fix (-W)documentation error found by ClangAlexis La Goutte1-4/+4
./packet_list_utils.h:37:11: error: parameter 'col[IN]' not found in the function declaration [-Werror,-Wdocumentation] * @param col[IN] The column number. ^~~~~~~ ./packet_list_utils.h:38:11: error: parameter 'cf[IN]' not found in the function declaration [-Werror,-Wdocumentation] * @param cf[IN] The capture file containing the packet data. ^~~~~~ ./packet_list_utils.h:47:11: error: parameter 'col[IN]' not found in the function declaration [-Werror,-Wdocumentation] * @param col[IN] The column number. ^~~~~~~ ./packet_list_utils.h:48:11: error: parameter 'cf[IN]' not found in the function declaration [-Werror,-Wdocumentation] * @param cf[IN] The capture file containing the packet data. ^~~~~~ svn path=/trunk/; revision=51273
2013-07-08New Qt feature: Show related packet list items in the frame numberGerald Combs1-0/+71
column. Conversation spans (setup frame to last frame) are shown with a square bracket. Linked frames are shown with a circle. Use correct column justifications in Qt. Move common justification-related packet list code to ui/packet_list_utils.[ch]. Add a last_frame element to conversation_t. svn path=/trunk/; revision=50447