Formatting

SVN revision: 24047
This commit is contained in:
sebastid 2006-07-19 13:44:32 +00:00 committed by sebastid
parent 4dbdc0ee15
commit 21543b0891
1 changed files with 3 additions and 3 deletions

View File

@ -955,16 +955,16 @@ break;
#elif (TYPE == E_WM_IN)
STRING(s, HDL);
E_App *a;
if(ecore_file_exists(s))
if (ecore_file_exists(s))
{
a = e_app_new(s, 0);
if(a)
if (a)
e_eap_edit_show(e_container_current_get(e_manager_current_get()), a);
}
else
{
a = e_app_empty_new(s);
if(a)
if (a)
e_eap_edit_show(e_container_current_get(e_manager_current_get()), a);
}
END_STRING(s);