From e7148bf82d8a0e0c68cb794dbce7b2f70d3d0e55 Mon Sep 17 00:00:00 2001 From: James Booth Date: Tue, 27 Oct 2015 23:20:03 +0000 Subject: Renamed ui_outgoing_chat_msg -> chatwin_outgoing_msg --- src/ui/chatwin.c | 2 +- src/ui/ui.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ui') diff --git a/src/ui/chatwin.c b/src/ui/chatwin.c index 1202be9c..35d502c0 100644 --- a/src/ui/chatwin.c +++ b/src/ui/chatwin.c @@ -271,7 +271,7 @@ chatwin_incoming_msg(ProfChatWin *chatwin, const char *const resource, const cha } void -ui_outgoing_chat_msg(ProfChatWin *chatwin, const char *const message, char *id, prof_enc_t enc_mode) +chatwin_outgoing_msg(ProfChatWin *chatwin, const char *const message, char *id, prof_enc_t enc_mode) { char enc_char = '-'; if (enc_mode == PROF_MSG_OTR) { diff --git a/src/ui/ui.h b/src/ui/ui.h index fb56b6e1..2375c5dc 100644 --- a/src/ui/ui.h +++ b/src/ui/ui.h @@ -106,7 +106,7 @@ void chatwin_receipt_received(ProfChatWin *chatwin, const char *const id); void ui_disconnected(void); void chatwin_recipient_gone(ProfChatWin *chatwin); -void ui_outgoing_chat_msg(ProfChatWin *chatwin, const char *const message, char *id, prof_enc_t enc_mode); +void chatwin_outgoing_msg(ProfChatWin *chatwin, const char *const message, char *id, prof_enc_t enc_mode); void ui_outgoing_chat_msg_carbon(const char *const barejid, const char *const message); void ui_outgoing_private_msg(ProfPrivateWin *privwin, const char *const message); -- cgit 1.4.1-2-gfad0 f='/akkartik/mu/tree/translate?h=hlt&id=38a93706739b864c67fc3107ec862dee4440c875'>tree commit diff stats
path: root/translate
blob: 9c1fc38d2bd0bf8dd138510db49cbcbc4457440f (plain) (blame)
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