Added current window reference to command functions

This commit is contained in:
James Booth
2015-06-17 00:15:28 +01:00
parent cfef64c767
commit 2215a3791f
24 changed files with 582 additions and 578 deletions

View File

@@ -21,7 +21,7 @@ void cmd_statuses_shows_usage_when_bad_subcmd(void **state)
expect_cons_show("Usage: some usage");
gboolean result = cmd_statuses(args, *help);
gboolean result = cmd_statuses(NULL, args, *help);
assert_true(result);
free(help);
@@ -35,7 +35,7 @@ void cmd_statuses_shows_usage_when_bad_console_setting(void **state)
expect_cons_show("Usage: some usage");
gboolean result = cmd_statuses(args, *help);
gboolean result = cmd_statuses(NULL, args, *help);
assert_true(result);
free(help);
@@ -49,7 +49,7 @@ void cmd_statuses_shows_usage_when_bad_chat_setting(void **state)
expect_cons_show("Usage: some usage");
gboolean result = cmd_statuses(args, *help);
gboolean result = cmd_statuses(NULL, args, *help);
assert_true(result);
free(help);
@@ -63,7 +63,7 @@ void cmd_statuses_shows_usage_when_bad_muc_setting(void **state)
expect_cons_show("Usage: some usage");
gboolean result = cmd_statuses(args, *help);
gboolean result = cmd_statuses(NULL, args, *help);
assert_true(result);
free(help);
@@ -76,7 +76,7 @@ void cmd_statuses_console_sets_all(void **state)
expect_cons_show("All presence updates will appear in the console.");
gboolean result = cmd_statuses(args, *help);
gboolean result = cmd_statuses(NULL, args, *help);
char *setting = prefs_get_string(PREF_STATUSES_CONSOLE);
assert_non_null(setting);
@@ -93,7 +93,7 @@ void cmd_statuses_console_sets_online(void **state)
expect_cons_show("Only online/offline presence updates will appear in the console.");
gboolean result = cmd_statuses(args, *help);
gboolean result = cmd_statuses(NULL, args, *help);
char *setting = prefs_get_string(PREF_STATUSES_CONSOLE);
assert_non_null(setting);
@@ -110,7 +110,7 @@ void cmd_statuses_console_sets_none(void **state)
expect_cons_show("Presence updates will not appear in the console.");
gboolean result = cmd_statuses(args, *help);
gboolean result = cmd_statuses(NULL, args, *help);
char *setting = prefs_get_string(PREF_STATUSES_CONSOLE);
assert_non_null(setting);
@@ -127,7 +127,7 @@ void cmd_statuses_chat_sets_all(void **state)
expect_cons_show("All presence updates will appear in chat windows.");
gboolean result = cmd_statuses(args, *help);
gboolean result = cmd_statuses(NULL, args, *help);
char *setting = prefs_get_string(PREF_STATUSES_CHAT);
assert_non_null(setting);
@@ -144,7 +144,7 @@ void cmd_statuses_chat_sets_online(void **state)
expect_cons_show("Only online/offline presence updates will appear in chat windows.");
gboolean result = cmd_statuses(args, *help);
gboolean result = cmd_statuses(NULL, args, *help);
char *setting = prefs_get_string(PREF_STATUSES_CHAT);
assert_non_null(setting);
@@ -161,7 +161,7 @@ void cmd_statuses_chat_sets_none(void **state)
expect_cons_show("Presence updates will not appear in chat windows.");
gboolean result = cmd_statuses(args, *help);
gboolean result = cmd_statuses(NULL, args, *help);
char *setting = prefs_get_string(PREF_STATUSES_CHAT);
assert_non_null(setting);
@@ -178,7 +178,7 @@ void cmd_statuses_muc_sets_all(void **state)
expect_cons_show("All presence updates will appear in chat room windows.");
gboolean result = cmd_statuses(args, *help);
gboolean result = cmd_statuses(NULL, args, *help);
char *setting = prefs_get_string(PREF_STATUSES_MUC);
assert_non_null(setting);
@@ -195,7 +195,7 @@ void cmd_statuses_muc_sets_online(void **state)
expect_cons_show("Only join/leave presence updates will appear in chat room windows.");
gboolean result = cmd_statuses(args, *help);
gboolean result = cmd_statuses(NULL, args, *help);
char *setting = prefs_get_string(PREF_STATUSES_MUC);
assert_non_null(setting);
@@ -212,7 +212,7 @@ void cmd_statuses_muc_sets_none(void **state)
expect_cons_show("Presence updates will not appear in chat room windows.");
gboolean result = cmd_statuses(args, *help);
gboolean result = cmd_statuses(NULL, args, *help);
char *setting = prefs_get_string(PREF_STATUSES_MUC);
assert_non_null(setting);