seoz pushed a commit to branch master.

commit a927ace445df418faf9bfc5c6b27f577c89fab2e
Author: Daniel Juyung Seo <[email protected]>
Date:   Wed May 1 16:59:04 2013 +0900

    options_behavior.c: removed unnecessary variable.
---
 src/bin/options_behavior.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/bin/options_behavior.c b/src/bin/options_behavior.c
index 7b75b43..94820ef 100644
--- a/src/bin/options_behavior.c
+++ b/src/bin/options_behavior.c
@@ -7,7 +7,7 @@
 #include "options_behavior.h"
 #include "main.h"
 
-static Evas_Object *op_sbslider, *op_jumpcheck, *op_wordsep, *op_w, *op_h;
+static Evas_Object *op_w, *op_h;
 
 static void
 _cb_op_behavior_jump_keypress_chg(void *data, Evas_Object *obj, void *event 
__UNUSED__)
@@ -183,7 +183,7 @@ options_behavior(Evas_Object *opbox, Evas_Object *term)
    elm_object_content_set(sc, o);
    evas_object_show(o);
    
-   op_jumpcheck = o = elm_check_add(bx);
+   o = elm_check_add(bx);
    evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0.0);
    evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.5);
    elm_object_text_set(o, "Jump on change");
@@ -319,7 +319,7 @@ options_behavior(Evas_Object *opbox, Evas_Object *term)
    elm_box_pack_end(bx, o);
    evas_object_show(o);
 
-   op_wordsep = o = elm_entry_add(bx);
+   o = elm_entry_add(bx);
    evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0.0);
    evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.5);
    elm_entry_single_line_set(o, EINA_TRUE);
@@ -350,7 +350,7 @@ options_behavior(Evas_Object *opbox, Evas_Object *term)
    elm_box_pack_end(bx, o);
    evas_object_show(o);
    
-   op_sbslider = o = elm_slider_add(bx);
+   o = elm_slider_add(bx);
    evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, 0.0);
    evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.0);
    elm_slider_span_size_set(o, 40);

-- 

------------------------------------------------------------------------------
Get 100% visibility into Java/.NET code with AppDynamics Lite
It's a free troubleshooting tool designed for production
Get down to code-level detail for bottlenecks, with <2% overhead.
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap2

Reply via email to