about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ui/mucwin.c2
-rw-r--r--src/ui/ui.h2
-rw-r--r--src/xmpp/iq.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/mucwin.c b/src/ui/mucwin.c
index 08ef824f..6515eb7a 100644
--- a/src/ui/mucwin.c
+++ b/src/ui/mucwin.c
@@ -130,7 +130,7 @@ mucwin_occupant_role_and_affiliation_change(const char *const roomjid, const cha
 }
 
 void
-ui_handle_room_info_error(const char *const roomjid, const char *const error)
+mucwin_room_info_error(const char *const roomjid, const char *const error)
 {
     ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
     if (window) {
diff --git a/src/ui/ui.h b/src/ui/ui.h
index 47b087ac..addb6e9c 100644
--- a/src/ui/ui.h
+++ b/src/ui/ui.h
@@ -114,7 +114,7 @@ void ui_room_destroy(const char *const roomjid);
 void ui_show_room_info(ProfMucWin *mucwin);
 void ui_show_room_role_list(ProfMucWin *mucwin, muc_role_t role);
 void ui_show_room_affiliation_list(ProfMucWin *mucwin, muc_affiliation_t affiliation);
-void ui_handle_room_info_error(const char *const roomjid, const char *const error);
+void mucwin_room_info_error(const char *const roomjid, const char *const error);
 void ui_show_room_disco_info(const char *const roomjid, GSList *identities, GSList *features);
 void ui_room_destroyed(const char *const roomjid, const char *const reason, const char *const new_jid,
     const char *const password);
diff --git a/src/xmpp/iq.c b/src/xmpp/iq.c
index 8f19871b..d6a7ad55 100644
--- a/src/xmpp/iq.c
+++ b/src/xmpp/iq.c
@@ -1507,7 +1507,7 @@ _room_info_response_handler(xmpp_conn_t *const conn, xmpp_stanza_t *const stanza
     if (g_strcmp0(type, STANZA_TYPE_ERROR) == 0) {
         if (cb_data->display) {
             char *error_message = stanza_get_error_message(stanza);
-            ui_handle_room_info_error(cb_data->room, error_message);
+            mucwin_room_info_error(cb_data->room, error_message);
             free(error_message);
         }
         free(cb_data->room);
> 2006-08-02 17:19:22 +0200 changing MASTERW value from 52 to 60 (in both, default and arg), I feel this is better now' href='/acidbong/suckless/dwm/commit/config.arg.h?h=3.9&id=1bf0c4a8e7892896bb8ed1693f36f1de5285e46c'>1bf0c4a ^
a73a882 ^
b38905b ^
a73a882 ^
292ccc4 ^
f1fe19b ^
0a07591 ^
f1fe19b ^
9927b9e ^


f1fe19b ^

292ccc4 ^
ce04a66 ^
3a1343a ^
0ed0fa4 ^
19da197 ^


7b6d5ff ^
19da197 ^


7b6d5ff ^
ce04a66 ^

bab575c ^
ce04a66 ^


7b6d5ff ^
ce04a66 ^


7b6d5ff ^
ce04a66 ^
a73a882 ^



d6a6eca ^
f1fe19b ^
e21d93b ^
f1fe19b ^

a73a882 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68