Mercurial > pidgin
annotate src/protocols/sametime/sametime.h @ 13505:7a6763bbf82b
[gaim-migrate @ 15881]
On Mon, 2006-03-13 at 15:10 -0500, Adil wrote:
> Would it be `better' to not print an error message for the event
> (because it is possible to have a chat-window for a disconnected
> account), and popup a menu with disabled entries instead?
This commit implements that. I've also removed some code duplication by having create_chat_menu() look up the prpl_info from the gc.
Also, I think we should grey out the Send File menu item when a particular user doesn't have the ability to receive files, rather than not show it. It's more consistent with what we do elsewhere. I've made that change as well.
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Tue, 14 Mar 2006 06:15:31 +0000 |
| parents | 30d6ebea36e2 |
| children |
| rev | line source |
|---|---|
| 10977 | 1 |
| 2 | |
| 3 /* CFLAGS trumps configure values */ | |
| 4 | |
| 5 | |
| 6 /** default host for the gaim plugin. You can specialize a build to | |
| 7 default to your server by supplying this at compile time */ | |
| 8 #ifndef MW_PLUGIN_DEFAULT_HOST | |
| 9 #define MW_PLUGIN_DEFAULT_HOST "" | |
| 10 #endif | |
| 11 /* "" */ | |
| 12 | |
| 13 | |
| 14 /** default port for the gaim plugin. You can specialize a build to | |
| 15 default to your server by supplying this at compile time */ | |
| 16 #ifndef MW_PLUGIN_DEFAULT_PORT | |
| 17 #define MW_PLUGIN_DEFAULT_PORT 1533 | |
| 18 #endif | |
| 19 /* 1533 */ | |
| 20 | |
| 21 | |
|
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
10977
diff
changeset
|
22 /** default encoding for the gaim plugin.*/ |
|
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
10977
diff
changeset
|
23 #ifndef MW_PLUGIN_DEFAULT_ENCODING |
|
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
10977
diff
changeset
|
24 #define MW_PLUGIN_DEFAULT_ENCODING "ISO-8859-1" |
|
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
10977
diff
changeset
|
25 #endif |
|
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
10977
diff
changeset
|
26 /* ISO-8859-1 */ |
