diff options
author | George Hazan <george.hazan@gmail.com> | 2023-09-21 13:34:07 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-09-21 13:34:07 +0300 |
commit | 6024e32d70da7a7c703de51e30b6c6407df8a745 (patch) | |
tree | 8a4d35a59b0009d9ed781a8537e03b7d75f8ada1 /plugins/MirLua | |
parent | 8a27227c3ada60a9ac4d78a721b101264a95af05 (diff) |
unused old field removed
Diffstat (limited to 'plugins/MirLua')
-rw-r--r-- | plugins/MirLua/src/Modules/m_message.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/MirLua/src/Modules/m_message.cpp b/plugins/MirLua/src/Modules/m_message.cpp index eee8c43f3e..0bc9142dad 100644 --- a/plugins/MirLua/src/Modules/m_message.cpp +++ b/plugins/MirLua/src/Modules/m_message.cpp @@ -66,8 +66,7 @@ LUAMOD_API int luaopen_m_message(lua_State *L) MT<MessageWindowEventData>(L, "MessageWindowEventData") .Field(&MessageWindowEventData::uType, "Type", LUA_TINTEGER) - .Field(&MessageWindowEventData::hContact, "hContact", LUA_TINTEGER) - .Field(&MessageWindowEventData::uFlags, "Flags", LUA_TINTEGER); + .Field(&MessageWindowEventData::hContact, "hContact", LUA_TINTEGER); return 1; } |