about summary refs log tree commit diff stats
path: root/src/ui
diff options
context:
space:
mode:
authorJasper van Bourgognie <jvb@softkinetic.com>2013-12-27 20:56:47 +0100
committerJasper van Bourgognie <jvb@softkinetic.com>2013-12-27 20:56:47 +0100
commit4a706f7a801c4a4c18c30e27a6b31a468ef27b43 (patch)
tree7faa4e160e94b44648c3eb36119659b48e0c4df8 /src/ui
parent8f26b3bbf96d50cd616d02da7690acc945fedef9 (diff)
downloadprofani-tty-4a706f7a801c4a4c18c30e27a6b31a468ef27b43.tar.gz
src/ui/core.c: Removed duplicate const keyword
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/core.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/core.c b/src/ui/core.c
index c5636d3a..c06f025e 100644
--- a/src/ui/core.c
+++ b/src/ui/core.c
@@ -954,8 +954,8 @@ _ui_outgoing_msg(const char * const from, const char * const to,
 
         if (contact != NULL) {
             if (strcmp(p_contact_presence(contact), "offline") == 0) {
-                const char const *show = p_contact_presence(contact);
-                const char const *status = p_contact_status(contact);
+                const char *show = p_contact_presence(contact);
+                const char *status = p_contact_status(contact);
                 win_show_status_string(window, to, show, status, NULL, "--", "offline");
             }
         }
@@ -1026,8 +1026,8 @@ _ui_room_roster(const char * const room, GList *roster, const char * const prese
 
         while (roster != NULL) {
             PContact member = roster->data;
-            const char const *nick = p_contact_barejid(member);
-            const char const *show = p_contact_presence(member);
+            const char *nick = p_contact_barejid(member);
+            const char *show = p_contact_presence(member);
 
             win_presence_colour_on(window, show);
             wprintw(window->win, "%s", nick);
mmit/src/plugins/disco.c?id=9945246a648998e374c0c3a5ac56cdffc63ef13a'>9945246a ^
9b55f2de ^
9945246a ^

9b55f2de ^
a65403c5 ^

9b55f2de ^
a65403c5 ^
9945246a ^
a65403c5 ^
623fbe9e ^

9b55f2de ^
623fbe9e ^
a65403c5 ^
623fbe9e ^


9945246a ^


a65403c5 ^



9b55f2de ^
9945246a ^
















a65403c5 ^
9b55f2de ^
9945246a ^


a65403c5 ^



9b55f2de ^
a65403c5 ^
9945246a ^


a65403c5 ^



9b55f2de ^
9945246a ^
a65403c5 ^


9b55f2de ^

9945246a ^
9b55f2de ^
9945246a ^
9b55f2de ^
9945246a ^











623fbe9e ^




9945246a ^

a65403c5 ^

9945246a ^
623fbe9e ^




9945246a ^




a65403c5 ^


623fbe9e ^

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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150