express: Format for 80 columns

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-05-04 18:58:54 -04:00
parent 6fdc9ca8d1
commit cf41f6d06a
1 changed files with 8 additions and 4 deletions

View File

@ -1003,8 +1003,10 @@ _channel_text_append(Channel *chl, const char *user, const char *txt, Row_Color
user_color = 78;
}
_grid_text_append(chl->o_grid, user, strlen(user), _row_color_simple_create(user_color));
_grid_text_append(chl->o_grid, "\t", strlen("\t"), _row_color_simple_create(user_color));
_grid_text_append(chl->o_grid, user, strlen(user),
_row_color_simple_create(user_color));
_grid_text_append(chl->o_grid, "\t", strlen("\t"),
_row_color_simple_create(user_color));
}
_grid_text_append(chl->o_grid, txt, strlen(txt), color);
@ -1128,7 +1130,8 @@ _channel_tabbar_lbox_create(Channel *chl, Evas_Object *win)
elm_box_homogeneous_set(chl->tabbar.l.o_box, EINA_TRUE);
WEIGHT_SET(chl->tabbar.l.o_box, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
FILL_SET(chl->tabbar.l.o_box, EVAS_HINT_FILL, EVAS_HINT_FILL);
edje_object_part_swallow(chl->o_bg, "tabl.content", chl->tabbar.l.o_box);
edje_object_part_swallow(chl->o_bg, "tabl.content",
chl->tabbar.l.o_box);
elm_object_focus_allow_set(chl->tabbar.l.o_box, EINA_FALSE);
evas_object_show(chl->tabbar.l.o_box);
}
@ -1144,7 +1147,8 @@ _channel_tabbar_rbox_create(Channel *chl, Evas_Object *win)
elm_box_homogeneous_set(chl->tabbar.r.o_box, EINA_TRUE);
WEIGHT_SET(chl->tabbar.r.o_box, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
FILL_SET(chl->tabbar.r.o_box, EVAS_HINT_FILL, EVAS_HINT_FILL);
edje_object_part_swallow(chl->o_bg, "tabr.content", chl->tabbar.r.o_box);
edje_object_part_swallow(chl->o_bg, "tabr.content",
chl->tabbar.r.o_box);
elm_object_focus_allow_set(chl->tabbar.r.o_box, EINA_FALSE);
evas_object_show(chl->tabbar.r.o_box);
}