fix a GCC compiler error

This commit is contained in:
Jinhao 2017-09-28 08:42:11 +08:00
parent d715c87d93
commit a3cd37b9d5

View File

@ -245,8 +245,10 @@ namespace detail
_m_event_filter(evt_code, wd, thrd);
}
if(wd->other.upd_state == core_window_t::update_state::none)
wd->other.upd_state = core_window_t::update_state::lazy;
using update_state = basic_window::update_state;
if(wd->other.upd_state == update_state::none)
wd->other.upd_state = update_state::lazy;
_m_emit_core(evt_code, wd, false, arg, bForce__EmitInternal);