Renamed jabber_presence_t->presence_t

This commit is contained in:
James Booth
2013-02-10 11:31:31 +00:00
parent ec78914044
commit 591f8a8dbf
15 changed files with 29 additions and 29 deletions

View File

@@ -32,7 +32,7 @@ static char *current_title = NULL;
static char *recipient = NULL;
static GTimer *typing_elapsed;
static int dirty;
static jabber_presence_t current_status;
static presence_t current_status;
static void _title_bar_draw_title(void);
static void _title_bar_draw_status(void);
@@ -119,7 +119,7 @@ title_bar_show(const char * const title)
}
void
title_bar_set_status(jabber_presence_t status)
title_bar_set_status(presence_t status)
{
current_status = status;
_title_bar_draw_status();

View File

@@ -92,7 +92,7 @@ void title_bar_refresh(void);
void title_bar_resize(void);
void title_bar_show(const char * const title);
void title_bar_title(void);
void title_bar_set_status(jabber_presence_t status);
void title_bar_set_status(presence_t status);
void title_bar_set_recipient(char *from);
void title_bar_set_typing(gboolean is_typing);
void title_bar_draw(void);

View File

@@ -1094,7 +1094,7 @@ cons_show_login_success(ProfAccount *account)
_win_show_time(console->win, '-');
wprintw(console->win, "%s logged in successfully, ", account->jid);
jabber_presence_t presence = accounts_get_login_presence(account->name);
presence_t presence = accounts_get_login_presence(account->name);
char *presence_str;
switch(presence)
{