elm_main.c: use a direct variable check instead of unnecessary additional function call like other lines of code.

This commit is contained in:
Daniel Juyung Seo 2013-11-15 21:53:39 +09:00
parent 16e2c0779f
commit ca210a2d66
1 changed files with 1 additions and 1 deletions

View File

@ -643,7 +643,7 @@ elm_quicklaunch_init(int argc,
EINA_LOG_STATE_STOP,
EINA_LOG_STATE_INIT);
if (elm_quicklaunch_mode_get())
if (quicklaunch_on)
_elm_init_count++;
return _elm_ql_init_count;
}