seoz pushed a commit to branch master.

http://git.enlightenment.org/tools/elm-theme-viewer.git/commit/?id=fbe653993ea44c5efc58ccce7d134e368f495617

commit fbe653993ea44c5efc58ccce7d134e368f495617
Author: Daniel Juyung Seo <juyung....@samsung.com>
Date:   Sun Dec 7 18:50:31 2014 +0900

    widget: Reorder internal codes sequentially.
---
 src/bin/widget.c | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/src/bin/widget.c b/src/bin/widget.c
index 08d952f..cabb63a 100644
--- a/src/bin/widget.c
+++ b/src/bin/widget.c
@@ -265,19 +265,6 @@ _widget_button_create(Evas_Object *parent, const char* 
style)
    return o;
 }
 
-// clock
-static Evas_Object *
-_widget_clock_create(Evas_Object *parent, const char* style)
-{
-   Evas_Object *o;
-   o = elm_clock_add(parent);
-   EXPAND(o);
-   elm_object_style_set(o, style);
-   evas_object_show(o);
-
-   return o;
-}
-
 // check
 static Evas_Object *
 _widget_check_create(Evas_Object *parent, const char *style)
@@ -316,6 +303,19 @@ _widget_check_create(Evas_Object *parent, const char 
*style)
    return o;
 }
 
+// clock
+static Evas_Object *
+_widget_clock_create(Evas_Object *parent, const char* style)
+{
+   Evas_Object *o;
+   o = elm_clock_add(parent);
+   EXPAND(o);
+   elm_object_style_set(o, style);
+   evas_object_show(o);
+
+   return o;
+}
+
 // colorselector
 static Evas_Object *
 _widget_colorselector_create(Evas_Object *parent, const char *style)

-- 


Reply via email to