Show contacts handle as window title in chat

This commit is contained in:
James Booth
2013-05-19 03:45:27 +01:00
parent 1c41a46dce
commit db6e7f5697
3 changed files with 13 additions and 4 deletions

View File

@@ -29,7 +29,7 @@
static WINDOW *title_bar;
static char *current_title = NULL;
static char *recipient = NULL;
static const char *recipient = NULL;
static GTimer *typing_elapsed;
static int dirty;
static contact_presence_t current_status;
@@ -126,7 +126,7 @@ title_bar_set_status(contact_presence_t status)
}
void
title_bar_set_recipient(char *from)
title_bar_set_recipient(const char * const from)
{
if (typing_elapsed != NULL) {
g_timer_destroy(typing_elapsed);