From ca210a2d666a32c8ab7384d62f2e9a569f851c14 Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Fri, 15 Nov 2013 21:53:39 +0900 Subject: [PATCH] elm_main.c: use a direct variable check instead of unnecessary additional function call like other lines of code. --- legacy/elementary/src/lib/elm_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/elementary/src/lib/elm_main.c b/legacy/elementary/src/lib/elm_main.c index afcfc1e886..3614c4631b 100644 --- a/legacy/elementary/src/lib/elm_main.c +++ b/legacy/elementary/src/lib/elm_main.c @@ -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; }