about summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-04-30 21:23:43 +0100
committerJames Booth <boothj5@gmail.com>2015-04-30 21:23:43 +0100
commit0a6b76d6d36455a118d95b2815f1ab5f16707bff (patch)
treea8920f0f3deaf4061d1a039c59be065a6f7eff82 /tests
parent2e75e5446060f64759dcc73c2f0a4967024f1627 (diff)
downloadprofani-tty-0a6b76d6d36455a118d95b2815f1ab5f16707bff.tar.gz
Removed some ui functions, inlined
Diffstat (limited to 'tests')
-rw-r--r--tests/ui/stub_ui.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/ui/stub_ui.c b/tests/ui/stub_ui.c
index faea7dd3..16933e5d 100644
--- a/tests/ui/stub_ui.c
+++ b/tests/ui/stub_ui.c
@@ -135,11 +135,6 @@ win_type_t ui_current_win_type(void)
     return (win_type_t)mock();
 }
 
-int ui_current_win_index(void)
-{
-    return 0;
-}
-
 gboolean ui_current_win_is_otr(void)
 {
     return (gboolean)mock();
@@ -180,10 +175,6 @@ win_type_t ui_win_type(int index)
 }
 
 void ui_close_win(int index) {}
-gboolean ui_win_exists(int index)
-{
-    return FALSE;
-}
 
 int ui_win_unread(int index)
 {
/a> 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187