summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Michael <cp.michael@samsung.com>2016-09-22 13:50:09 -0400
committerChris Michael <cp.michael@samsung.com>2016-09-22 13:50:09 -0400
commit76bdf4981c7184867c7352a3f887de83fa8097db (patch)
treec96f9abd9cf3ca21bb05e0d98bdaa91cb4fa6b04
parent4768b1d04e49e924cbf9ab765c465989840d48a9 (diff)
downloadefl-76bdf4981c7184867c7352a3f887de83fa8097db.tar.gz
elementary: Remove unused but set variable in test_image
Signed-off-by: Chris Michael <cp.michael@samsung.com>
-rw-r--r--src/bin/elementary/test_image.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/elementary/test_image.c b/src/bin/elementary/test_image.c
index 38624ea893..528c7afd72 100644
--- a/src/bin/elementary/test_image.c
+++ b/src/bin/elementary/test_image.c
@@ -158,7 +158,7 @@ _url_activate_cb(void *data, Evas_Object *obj, void *event_info EINA_UNUSED)
void
test_remote_image(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSED)
{
- Evas_Object *win, *box, *im, *rd, *rdg = NULL, *box2, *o, *tbl, *txt;
+ Evas_Object *win, *box, *im, *rd, *rdg = NULL, *box2, *o, *tbl;
int i;
win = elm_win_util_standard_add("image test", "Image Test");
@@ -173,7 +173,7 @@ test_remote_image(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *e
evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
evas_object_size_hint_align_set(o, EVAS_HINT_FILL, EVAS_HINT_FILL);
- txt = o = elm_label_add(box);
+ o = elm_label_add(box);
elm_label_line_wrap_set(o, 1);
evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
evas_object_size_hint_align_set(o, EVAS_HINT_FILL, EVAS_HINT_FILL);