On 06/25/2009 01:25:56 AM, Geoffrey Leach wrote:
In the file spell-check.c, the position of #include "spell-check.h" leads to compile failure, as GType is not defined at that point
Does the attached patch fix the problem? Pawel
diff --git a/src/spell-check.h b/src/spell-check.h index c203c30..599f1ff 100644 --- a/src/spell-check.h +++ b/src/spell-check.h @@ -22,6 +22,8 @@ #ifndef __BALSA_SPELL_CHECK_H__ #define __BALSA_SPELL_CHECK_H__ +#include <glib-object.h> + #define USE_ORIGINAL_MANAGER_FUNCS #ifdef __cplusplus
_______________________________________________ balsa-list mailing list [email protected] http://mail.gnome.org/mailman/listinfo/balsa-list
