clouseau: Removed _titlebar_string_set() duplicated func code

Signed-off-by: Aharon Hillel <a.hillel@samsung.com>

SVN revision: 72352
This commit is contained in:
Aharon Hillel 2012-06-18 07:23:07 +00:00 committed by Tom Hacohen
parent 539e84db55
commit a4cea7f8d6
1 changed files with 0 additions and 19 deletions

View File

@ -76,25 +76,6 @@ _titlebar_string_set(gui_elements *g, Eina_Bool online)
}
}
static void
_titlebar_string_set(gui_elements *g, Eina_Bool online)
{
if (online)
{
char *str = malloc(strlen(CLIENT_NAME) + strlen(g->address) + 32);
sprintf(str, "%s - %s", CLIENT_NAME, g->address);
elm_win_title_set(g->win, str);
free(str);
}
else
{
char *str = malloc(strlen(CLIENT_NAME) + 32);
sprintf(str, "%s - Offline", CLIENT_NAME);
elm_win_title_set(g->win, str);
free(str);
}
}
Eina_Bool
_add(void *data EINA_UNUSED, int type EINA_UNUSED, Ecore_Ipc_Event_Server_Add *ev)
{