Formatting

SVN revision: 37626
This commit is contained in:
Sebastian Dransfeld 2008-11-14 17:35:05 +00:00
parent febbf0ab0f
commit b2fa64de52
3 changed files with 5 additions and 5 deletions

View File

@ -143,10 +143,10 @@ _edje_recalc(Edje *ed)
if (!ed->calc_only)
{
if (_edje_freeze_val > 0) _edje_freeze_calc_count++;
return ;
return;
}
}
if (ed->postponed) return ;
if (ed->postponed) return;
evas_object_smart_changed(ed->obj);
ed->postponed = 1;
}

View File

@ -1033,7 +1033,7 @@ _cb_signal_repeat(void *data, Evas_Object *obj, const char *signal, const char *
length_parent = strlen(ed->parent);
length_source = strlen(source);
if (length_source + length_parent + 2 > sizeof(new_src))
return ;
return;
if (ed->parent)
memcpy(new_src, ed->parent, length_parent);

View File

@ -612,7 +612,7 @@ edje_match_program_hash_build(const Eina_List *callbacks,
if (!item)
{
item = malloc(sizeof (Edje_Signal_Source_Char));
if (!item) continue ;
if (!item) continue;
item->signal = program->signal;
item->source = program->source;
@ -653,7 +653,7 @@ edje_match_callback_hash_build(const Eina_List *callbacks,
if (!item)
{
item = malloc(sizeof (Edje_Signal_Source_Char));
if (!item) continue ;
if (!item) continue;
item->signal = callback->signal;
item->source = callback->source;