[elm] Style fix.

SVN revision: 74025
This commit is contained in:
Gustavo Lima Chaves 2012-07-17 18:46:18 +00:00
parent b24829d701
commit ef87e0cfb6
1 changed files with 38 additions and 35 deletions

View File

@ -1313,6 +1313,7 @@ _elm_win_xwindow_get(Elm_Win_Smart_Data *sd)
{
sd->x.xwin = _elm_ee_xwin_get(sd->ee);
}
#endif
#ifdef HAVE_ELEMENTARY_X
@ -1461,6 +1462,7 @@ _elm_win_xwin_update(Elm_Win_Smart_Data *sd)
ecore_x_e_illume_indicator_state_set
(sd->x.xwin, ECORE_X_ILLUME_INDICATOR_STATE_OFF);
}
#endif
static void
@ -2176,7 +2178,8 @@ elm_win_add(Evas_Object *parent,
{
tmp_sd.ee = ecore_evas_wayland_egl_new(NULL, 0, 0, 0, 1, 1, 0);
}
else if (_elm_preferred_engine && !strncmp(_elm_preferred_engine, "shot:", 5))
else if (_elm_preferred_engine &&
!strncmp(_elm_preferred_engine, "shot:", 5))
{
tmp_sd.ee = ecore_evas_buffer_new(1, 1);
ecore_evas_manual_render_set(tmp_sd.ee, EINA_TRUE);
@ -2230,7 +2233,8 @@ elm_win_add(Evas_Object *parent,
(ECORE_X_EVENT_CLIENT_MESSAGE, _elm_win_client_message, sd);
#endif
else if (_elm_preferred_engine && !strncmp(_elm_preferred_engine, "shot:", 5))
else if (_elm_preferred_engine &&
!strncmp(_elm_preferred_engine, "shot:", 5))
_shot_init(sd);
sd->kbdmode = ELM_WIN_KEYBOARD_UNKNOWN;
@ -3575,4 +3579,3 @@ elm_win_wl_window_get(const Evas_Object *obj)
#endif
return NULL;
}