edje: fix mistyped return value from edje_object_part_text_valign_get 75/133875/1
authorYoungbok Shin <youngb.shin@samsung.com>
Wed, 14 Jun 2017 00:29:13 +0000 (09:29 +0900)
committerYoungbok Shin <youngb.shin@samsung.com>
Wed, 14 Jun 2017 00:29:13 +0000 (09:29 +0900)
@tizen_fix

Change-Id: I9e7997da5e3329e066c4672b259c03c7ddcf4c65

src/lib/edje/edje_util.c

index 2600eb8..9176392 100644 (file)
@@ -6952,7 +6952,7 @@ _edje_object_part_text_valign_get(Eo *eo_obj EINA_UNUSED, Edje *ed, const char *
    Edje_Real_Part *rp;
    Edje_Part_Description_Text *desc;
 
-   if (!part) return -1,0;
+   if (!part) return -1.0;
    rp = _edje_real_part_recursive_get(&ed, part);
    if (!rp) return -1.0;
    if ((rp->part->type != EDJE_PART_TYPE_TEXTBLOCK) &&