Merge branch 'master' into readline
This commit is contained in:
@@ -723,7 +723,7 @@ cons_show_account(ProfAccount *account)
|
||||
if (curr != NULL) {
|
||||
win_save_println(console, "Resources:");
|
||||
|
||||
// sort in order of availabiltiy
|
||||
// sort in order of availability
|
||||
while (curr != NULL) {
|
||||
Resource *resource = curr->data;
|
||||
ordered_resources = g_list_insert_sorted(ordered_resources,
|
||||
|
||||
@@ -1873,7 +1873,7 @@ ui_room_message(const char * const roomjid, const char * const nick,
|
||||
if (wins_is_current(window)) {
|
||||
status_bar_active(num);
|
||||
|
||||
// not currenlty on groupchat window
|
||||
// not currently on groupchat window
|
||||
} else {
|
||||
status_bar_new(num);
|
||||
cons_show_incoming_message(nick, num);
|
||||
@@ -1957,7 +1957,7 @@ ui_room_requires_config(const char * const roomjid)
|
||||
if (wins_is_current(window)) {
|
||||
status_bar_active(num);
|
||||
|
||||
// not currenlty on groupchat window
|
||||
// not currently on groupchat window
|
||||
} else {
|
||||
status_bar_new(num);
|
||||
}
|
||||
@@ -2098,7 +2098,7 @@ ui_room_subject(const char * const roomjid, const char * const nick, const char
|
||||
if (wins_is_current(window)) {
|
||||
status_bar_active(num);
|
||||
|
||||
// not currenlty on groupchat window
|
||||
// not currently on groupchat window
|
||||
} else {
|
||||
status_bar_active(num);
|
||||
}
|
||||
@@ -2132,7 +2132,7 @@ ui_room_broadcast(const char * const roomjid, const char * const message)
|
||||
if (wins_is_current(window)) {
|
||||
status_bar_active(num);
|
||||
|
||||
// not currenlty on groupchat window
|
||||
// not currently on groupchat window
|
||||
} else {
|
||||
status_bar_new(num);
|
||||
}
|
||||
|
||||
@@ -192,7 +192,7 @@ status_bar_inactive(const int win)
|
||||
is_new[11] = TRUE;
|
||||
_mark_new(11);
|
||||
|
||||
// still have active winsows
|
||||
// still have active windows
|
||||
} else if (g_hash_table_size(remaining_active) != 0) {
|
||||
is_active[11] = TRUE;
|
||||
is_new[11] = FALSE;
|
||||
@@ -241,7 +241,7 @@ status_bar_active(const int win)
|
||||
_mark_active(11);
|
||||
}
|
||||
|
||||
// visible winsow indicators
|
||||
// visible window indicators
|
||||
} else {
|
||||
is_active[true_win] = TRUE;
|
||||
is_new[true_win] = FALSE;
|
||||
|
||||
@@ -722,7 +722,7 @@ win_show_info(ProfWin *window, PContact contact)
|
||||
if (resources != NULL) {
|
||||
win_save_print(window, '-', NULL, 0, 0, "", "Resources:");
|
||||
|
||||
// sort in order of availabiltiy
|
||||
// sort in order of availability
|
||||
GList *curr = resources;
|
||||
while (curr != NULL) {
|
||||
Resource *resource = curr->data;
|
||||
|
||||
Reference in New Issue
Block a user