Mercurial > pidgin
annotate plugins/gestures/Makefile.am @ 11815:821f40e1912f
[gaim-migrate @ 14106]
SF Patch #1336924 from sadrul
'From the wiki:
"If you have a tab open for a given contact, and then
drag an additional buddy into that contact, the send to
menu does not update."
This patch updates all the focused-conversations in
every window (note that not all conversation in every
tab). This wouldn't be necessary if it was possible to
tell which contact a buddy was removed from. But that
info is not available, so this is the way I can think of.
It works, and will probably not cause too much overhead
for most users -- assuming most of them use tabbed
convs and hence number of windows won't be too great.'
To track which contact was updated would be problematic, I think.
This doesn't seem like too much overhead to me and it keeps the code clean.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Tue, 25 Oct 2005 13:56:14 +0000 |
parents | 2cc05a9e944d |
children |
rev | line source |
---|---|
4390 | 1 plugindir = $(libdir)/gaim |
2 | |
10889 | 3 gestures_la_LDFLAGS = -module -avoid-version $(GTK_LIBS) |
4390 | 4 |
5 if PLUGINS | |
6 | |
7 plugin_LTLIBRARIES = gestures.la | |
8 | |
9 gestures_la_SOURCES = \ | |
10 gestures.c \ | |
11 gstroke.h \ | |
12 gstroke-internal.h \ | |
13 stroke.c \ | |
14 stroke-draw.c | |
15 | |
16 endif | |
17 | |
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
4390
diff
changeset
|
18 AM_CPPFLAGS = \ |
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
4390
diff
changeset
|
19 -DDATADIR=\"$(datadir)\" \ |
4390 | 20 -DVERSION=\"$(VERSION)\" \ |
6360
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
4390
diff
changeset
|
21 -I$(top_srcdir)/src \ |
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
4390
diff
changeset
|
22 $(DEBUG_CFLAGS) \ |
2e23ccbccdec
[gaim-migrate @ 6864]
Christian Hammond <chipx86@chipx86.com>
parents:
4390
diff
changeset
|
23 $(GTK_CFLAGS) |