Tue, 14 Feb 2006 05:43:43 +0000
[gaim-migrate @ 15646]
Always show a vertical scrollbar on conversations imhtmls. This will solve the shrinking conversation window bug. I chose this approach instead of saving the size of the window (as I had previous talked about), as this prevents the contents of the scrollback from rewrapping when the scrollbars appear or disappear. It also just seems to feel like the right thing to do, but maybe that's me being lazy.
| 11660 | 1 | #ifndef _GAIM_MONO_LOADER_GLUE_H_ |
| 2 | #define _GAIM_MONO_LOADER_GLUE_H_ | |
| 3 | ||
| 4 | #include <mono/jit/jit.h> | |
| 5 | #include <mono/metadata/object.h> | |
| 6 | #include <mono/metadata/environment.h> | |
| 7 | #include <mono/metadata/assembly.h> | |
| 8 | ||
| 9 | void gaim_debug_glue(int type, MonoString *cat, MonoString *str); | |
| 10 | ||
| 11 | int gaim_signal_connect_glue(MonoObject *h, MonoObject *plugin, MonoString *signal, MonoObject *func); | |
| 12 | ||
| 13 | MonoObject* gaim_blist_get_handle_glue(void); | |
| 14 | ||
| 15 | MonoObject* gaim_blist_build_buddy_object(void* buddy); | |
| 16 | ||
|
11980
fe5c2c58508c
[gaim-migrate @ 14273]
Eoin Coffey <ecoffey@soc.pidgin.im>
parents:
11660
diff
changeset
|
17 | MonoObject* gaim_status_build_status_object(void* data); |
|
fe5c2c58508c
[gaim-migrate @ 14273]
Eoin Coffey <ecoffey@soc.pidgin.im>
parents:
11660
diff
changeset
|
18 | |
| 11660 | 19 | #endif |