summaryrefslogtreecommitdiff
path: root/src/bin/test_box.c
diff options
context:
space:
mode:
authorDaniel Juyung Seo <seojuyung2@gmail.com>2012-03-29 11:09:45 +0000
committerDaniel Juyung Seo <seojuyung2@gmail.com>2012-03-29 11:09:45 +0000
commit8023050cc2f8bd782f700756d9ef339ec1f21a87 (patch)
tree8d8650ea94ae4f083c28e80b900d2092caf78a40 /src/bin/test_box.c
parenta037a137b428d735e1843833e28fc783b4d998d1 (diff)
downloadelementary-8023050cc2f8bd782f700756d9ef339ec1f21a87.tar.gz
elm: Fixed formatting. Added a space after 'if/while/for'
SVN revision: 69744
Diffstat (limited to 'src/bin/test_box.c')
-rw-r--r--src/bin/test_box.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/test_box.c b/src/bin/test_box.c
index 2ac3aafd1..893fb6ea1 100644
--- a/src/bin/test_box.c
+++ b/src/bin/test_box.c
@@ -39,7 +39,7 @@ static void
set_api_state(api_data *api)
{
const Eina_List *items = elm_box_children_get(api->box);
- if(!eina_list_count(items))
+ if (!eina_list_count(items))
return;
/* use elm_box_children_get() to get list of children */
@@ -51,7 +51,7 @@ set_api_state(api_data *api)
break;
case BOX_PACK_BEFORE:
- if(eina_list_count(items) > 1)
+ if (eina_list_count(items) > 1)
{ /* Put last item before the one preceeding it */
elm_box_unpack(api->box, eina_list_data_get(eina_list_last(items)));
elm_box_pack_before(api->box,
@@ -61,7 +61,7 @@ set_api_state(api_data *api)
break;
case BOX_PACK_AFTER:
- if(eina_list_count(items) > 1)
+ if (eina_list_count(items) > 1)
{ /* Put item before last to last */
elm_box_unpack(api->box, eina_list_nth(items,
eina_list_count(items)-2));