Changeset 114 for trunk/src/gui
- Timestamp:
- 06/11/13 19:25:36 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gui/gui_style.cc
r104 r114 74 74 // check id 75 75 lua_getfield( m_lua, -1, cid ); 76 if ( !lua_istable( m_lua, -1 ) )76 if ( lua_istable( m_lua, -1 ) ) 77 77 { 78 78 lua_getfield( m_lua, -1, centry ); … … 83 83 // check class 84 84 lua_getfield( m_lua, -1, cclass ); 85 if ( !lua_istable( m_lua, -1 ) )85 if ( lua_istable( m_lua, -1 ) ) 86 86 { 87 87 lua_getfield( m_lua, -1, centry ); … … 91 91 92 92 // check entry 93 lua_getfield( m_lua, -1, c class);93 lua_getfield( m_lua, -1, centry ); 94 94 if ( lua_type( m_lua, -1 ) == type ) return true; 95 95 return false;
Note: See TracChangeset
for help on using the changeset viewer.