Add begnings of channel_text_append

Signed-off-by: Chris Michael <devilhorns@comcast.net>
This commit is contained in:
Chris Michael 2014-01-20 17:31:26 +00:00
parent 8df5efe032
commit a8c76761e6
1 changed files with 6 additions and 0 deletions

View File

@ -429,3 +429,9 @@ _channel_spacer_create(Channel *chl)
evas_object_size_hint_min_set(chl->o_spacer, w, h);
edje_object_part_swallow(chl->o_bg, "chlcount.control", chl->o_spacer);
}
void
_channel_text_append(Channel *chl, const char *txt)
{
fprintf(stderr, "Channel %s Append: %s", chl->name, txt);
}