aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wslua/wslua_field.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/wslua/wslua_field.c')
-rw-r--r--epan/wslua/wslua_field.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/epan/wslua/wslua_field.c b/epan/wslua/wslua_field.c
index 39a66f0e93..2321a118c3 100644
--- a/epan/wslua/wslua_field.c
+++ b/epan/wslua/wslua_field.c
@@ -281,7 +281,7 @@ static int FieldInfo_get_display(lua_State* L) {
/* WSLUA_ATTRIBUTE FieldInfo_type RO The internal field type, a number which
matches one of the `ftype` values in `init.lua`.
- @since 1.99.9
+ @since 1.99.8
*/
static int FieldInfo_get_type(lua_State* L) {
FieldInfo fi = checkFieldInfo(L,1);
@@ -299,7 +299,7 @@ static int FieldInfo_get_type(lua_State* L) {
/* WSLUA_ATTRIBUTE FieldInfo_source RO The source `Tvb` object the `FieldInfo` is derived
from, or nil if there is none.
- @since 1.99.9
+ @since 1.99.8
*/
static int FieldInfo_get_source(lua_State* L) {
FieldInfo fi = checkFieldInfo(L,1);
@@ -337,7 +337,7 @@ static int FieldInfo_get_generated(lua_State* L) {
/* WSLUA_ATTRIBUTE FieldInfo_hidden RO Whether this field was marked as hidden (boolean).
- @since 1.99.9
+ @since 1.99.8
*/
static int FieldInfo_get_hidden(lua_State* L) {
FieldInfo fi = checkFieldInfo(L,1);
@@ -348,7 +348,7 @@ static int FieldInfo_get_hidden(lua_State* L) {
/* WSLUA_ATTRIBUTE FieldInfo_is_url RO Whether this field was marked as being a URL (boolean).
- @since 1.99.9
+ @since 1.99.8
*/
static int FieldInfo_get_is_url(lua_State* L) {
FieldInfo fi = checkFieldInfo(L,1);
@@ -359,7 +359,7 @@ static int FieldInfo_get_is_url(lua_State* L) {
/* WSLUA_ATTRIBUTE FieldInfo_little_endian RO Whether this field is little-endian encoded (boolean).
- @since 1.99.9
+ @since 1.99.8
*/
static int FieldInfo_get_little_endian(lua_State* L) {
FieldInfo fi = checkFieldInfo(L,1);
@@ -370,7 +370,7 @@ static int FieldInfo_get_little_endian(lua_State* L) {
/* WSLUA_ATTRIBUTE FieldInfo_big_endian RO Whether this field is big-endian encoded (boolean).
- @since 1.99.9
+ @since 1.99.8
*/
static int FieldInfo_get_big_endian(lua_State* L) {
FieldInfo fi = checkFieldInfo(L,1);
@@ -381,7 +381,7 @@ static int FieldInfo_get_big_endian(lua_State* L) {
/* WSLUA_ATTRIBUTE FieldInfo_name RO The filter name of this field.
- @since 1.99.9
+ @since 1.99.8
*/
static int FieldInfo_get_name(lua_State* L) {
/* The filter name of this field. */
@@ -705,7 +705,7 @@ WSLUA_CONSTRUCTOR Field_list(lua_State *L) {
/* WSLUA_ATTRIBUTE Field_name RO The filter name of this field, or nil.
- @since 1.99.9
+ @since 1.99.8
*/
static int Field_get_name(lua_State* L) {
Field fi = checkField(L,1);
@@ -718,7 +718,7 @@ static int Field_get_name(lua_State* L) {
/* WSLUA_ATTRIBUTE Field_display RO The full display name of this field, or nil.
- @since 1.99.9
+ @since 1.99.8
*/
static int Field_get_display(lua_State* L) {
Field fi = checkField(L,1);
@@ -731,7 +731,7 @@ static int Field_get_display(lua_State* L) {
/* WSLUA_ATTRIBUTE Field_type RO The `ftype` of this field, or nil.
- @since 1.99.9
+ @since 1.99.8
*/
static int Field_get_type(lua_State* L) {
Field fi = checkField(L,1);