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
This commit is contained in:
Michael Mann 2013-10-01 15:30:22 +00:00
parent 12dd69e0b6
commit d6950e2176
2 changed files with 0 additions and 17 deletions

View File

@ -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)

View File

@ -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.
*