Last change
on this file since 75222ab was
59ccef5,
checked in by dequis <dx@…>, at 2016-12-26T00:20:09Z
|
purple: Call imcb_buddy_nick_change() on a few whitelisted plugins
The whitelist includes hangouts, funyahoo and icq.
These plugins tend to have numeric or meaningless usernames. With this
change, users don't have to do 'ac whatever set nick_format %full_name'
anymore. Just sugar.
|
-
Property mode set to
100644
|
File size:
371 bytes
|
Line | |
---|
1 | #ifndef BPURPLE_H |
---|
2 | # define BPURPLE_H |
---|
3 | |
---|
4 | #include <purple.h> |
---|
5 | #include <glib.h> |
---|
6 | |
---|
7 | #define PURPLE_REQUEST_HANDLE "purple_request" |
---|
8 | |
---|
9 | #define PURPLE_OPT_SHOULD_SET_NICK 1 |
---|
10 | |
---|
11 | struct purple_data |
---|
12 | { |
---|
13 | PurpleAccount *account; |
---|
14 | |
---|
15 | GHashTable *input_requests; |
---|
16 | guint next_request_id; |
---|
17 | char *chat_list_server; |
---|
18 | GSList *filetransfers; |
---|
19 | |
---|
20 | int flags; |
---|
21 | }; |
---|
22 | |
---|
23 | #endif /* !BPURPLE_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.