Mercurial > pidgin
annotate plugins/perl/common/Stringref.xs @ 12479:53e2dc07d9e2
[gaim-migrate @ 14790]
SF Patch #1379776 from charkins
"This is a small fix to the blist visibility stuff. When
the blist is set hidden and there is no visibility
manager, the blist gets minimized. However, if there
was previously a visibility manager and the blist was
already hidden, it doesn't get shown before it is
iconified. This patch fixes that.
In addition, I added two debug statements to track the
count of visibility managers. This will be helpful for
diagnosing visibility issues if users send in debug logs."
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Tue, 13 Dec 2005 23:35:46 +0000 |
| parents | 6fd82071a7b8 |
| children | 96f9b4798012 |
| rev | line source |
|---|---|
| 11118 | 1 #include "module.h" |
| 2 | |
| 3 MODULE = Gaim::Stringref PACKAGE = Gaim::Stringref PREFIX = gaim_stringref_ | |
| 4 PROTOTYPES: ENABLE | |
| 5 | |
| 6 int | |
| 7 gaim_stringref_cmp(s1, s2) | |
| 8 Gaim::Stringref s1 | |
| 9 Gaim::Stringref s2 | |
| 10 | |
| 11 size_t | |
| 12 gaim_stringref_len(stringref) | |
| 13 Gaim::Stringref stringref | |
| 14 | |
| 15 Gaim::Stringref | |
| 12364 | 16 gaim_stringref_new(class, value) |
| 11118 | 17 const char *value |
| 12364 | 18 C_ARGS: |
| 19 value | |
| 11118 | 20 |
| 21 Gaim::Stringref | |
| 12364 | 22 gaim_stringref_new_noref(class, value) |
| 11118 | 23 const char *value |
| 12364 | 24 C_ARGS: |
| 25 value | |
| 11118 | 26 |
| 27 | |
| 28 | |
| 29 Gaim::Stringref | |
| 30 gaim_stringref_ref(stringref) | |
| 31 Gaim::Stringref stringref | |
| 32 | |
| 33 void | |
| 34 gaim_stringref_unref(stringref) | |
| 35 Gaim::Stringref stringref | |
| 36 | |
| 37 const char * | |
| 38 gaim_stringref_value(stringref) | |
| 39 Gaim::Stringref stringref | |
| 40 |
