summaryrefslogtreecommitdiff
path: root/epan/column-utils.h
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2013-10-01 15:30:22 +0000
committerMichael Mann <mmann78@netscape.net>2013-10-01 15:30:22 +0000
commitd6950e2176918538a3fd28949cb8e4fa45932b85 (patch)
tree8a74d01a10c2fa7f90ed040d03c313de1e7b947c /epan/column-utils.h
parent12dd69e0b680e4b483656b850ed33d3d47bf222e (diff)
downloadwireshark-d6950e2176918538a3fd28949cb8e4fa45932b85.tar.gz
FINALLY remove the check_col API so that reviewers won't have to mention that it's deprecated. Now it just won't compile if its included in a dissector.
svn path=/trunk/; revision=52317
Diffstat (limited to 'epan/column-utils.h')
-rw-r--r--epan/column-utils.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/epan/column-utils.h b/epan/column-utils.h
index e903314691..1ea0fd39ce 100644
--- a/epan/column-utils.h
+++ b/epan/column-utils.h
@@ -96,17 +96,6 @@ WS_DLL_PUBLIC gboolean col_get_writable(column_info *cinfo);
*/
WS_DLL_PUBLIC void col_set_writable(column_info *cinfo, const gboolean writable);
-/**
- * Checks if the given column can be filled with data.
- *
- * @param cinfo the current packet row
- * @param col the column to use, e.g. COL_INFO
- *
- * @deprecated Not needed in new code the check is done in
- * in the column function calls.
- */
-WS_DLL_PUBLIC gint check_col(column_info *cinfo, const gint col);
-
/** Sets a fence for the current column content,
* so this content won't be affected by further col_... function calls.
*