Tue, 29 Aug 2006 02:22:08 +0000
[gaim-migrate @ 17076]
SF Patch #1547720 from Hilbert
Fixes SF Bug #1541097
If you search, leave the Find dialog open, switch tabs, and search again, the search happens in the original tab. This patch fixes that bug. Now when you search, it searches in the active conversation window.
committer: Richard Laager <rlaager@pidgin.im>
| 11118 | 1 | #include "module.h" |
| 2 | ||
| 11290 | 3 | MODULE = Gaim::SavedStatus PACKAGE = Gaim::SavedStatus PREFIX = gaim_savedstatus_ |
| 4 | PROTOTYPES: ENABLE | |
| 11118 | 5 | |
| 12790 | 6 | gboolean |
| 11118 | 7 | gaim_savedstatus_delete(title) |
| 8 | const char *title | |
| 9 | ||
| 10 | Gaim::SavedStatus | |
| 11 | gaim_savedstatus_find(title) | |
| 12 | const char *title | |
| 13 | ||
| 14 | const char * | |
| 15 | gaim_savedstatus_get_message(saved_status) | |
| 16 | Gaim::SavedStatus saved_status | |
| 17 | ||
| 18 | const char * | |
| 19 | gaim_savedstatus_get_title(saved_status) | |
| 20 | Gaim::SavedStatus saved_status | |
| 21 | ||
| 22 | Gaim::StatusPrimitive | |
| 23 | gaim_savedstatus_get_type(saved_status) | |
| 24 | Gaim::SavedStatus saved_status | |
| 25 | ||
| 26 | Gaim::SavedStatus | |
| 27 | gaim_savedstatus_new(title, type) | |
| 28 | const char *title | |
| 29 | Gaim::StatusPrimitive type | |
| 30 | ||
| 12790 | 31 | void |
| 11118 | 32 | gaim_savedstatus_set_message(status, message) |
| 33 | Gaim::SavedStatus status | |
| 34 | const char *message | |
| 35 | ||
| 13502 | 36 | Gaim::SavedStatus |
| 37 | gaim_savedstatus_get_current() | |
| 38 | ||
| 11118 | 39 | MODULE = Gaim::SavedStatus PACKAGE = Gaim::SavedStatuses PREFIX = gaim_savedstatuses_ |
| 40 | PROTOTYPES: ENABLE | |
| 41 | ||
| 42 | void | |
| 43 | gaim_savedstatuses_get_all() | |
| 44 | PREINIT: | |
| 11130 | 45 | const GList *l; |
| 11118 | 46 | PPCODE: |
| 47 | for (l = gaim_savedstatuses_get_all(); l != NULL; l = l->next) { | |
| 12790 | 48 | XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Gaim::SavedStatus"))); |
| 11118 | 49 | } |
| 50 | ||
| 12790 | 51 | void * |
| 52 | gaim_savedstatuses_get_handle() | |
| 11118 | 53 | |
| 12790 | 54 | void |
| 55 | gaim_savedstatuses_init() | |
| 56 | ||
| 57 | void | |
| 11118 | 58 | gaim_savedstatuses_uninit() |