summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--epan/column-utils.c6
-rw-r--r--epan/column-utils.h11
2 files changed, 0 insertions, 17 deletions
diff --git a/epan/column-utils.c b/epan/column-utils.c
index 6457002312..3da1cc91fd 100644
--- a/epan/column-utils.c
+++ b/epan/column-utils.c
@@ -145,12 +145,6 @@ col_set_writable(column_info *cinfo, const gboolean writable)
/* There is at least one column in that format */ \
((cinfo)->col_first[el] >= 0))
-gint
-check_col(column_info *cinfo, const gint el)
-{
- return CHECK_COL(cinfo, el);
-}
-
/* Sets the fence for a column to be at the end of the column. */
void
col_set_fence(column_info *cinfo, const gint el)
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.
*