diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-08-03 22:40:40 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-08-03 22:40:40 +0800 |
commit | 4fc04af617091c77dfc9f6353299378918cb69cc (patch) | |
tree | 0723f125ecfafc33a59c3394c8d96450f85d0dde | |
parent | 976df5871e7e4a332b3416fff78984088ba78ef2 (diff) | |
download | gsoc2013-evolution-4fc04af617091c77dfc9f6353299378918cb69cc.tar gsoc2013-evolution-4fc04af617091c77dfc9f6353299378918cb69cc.tar.gz gsoc2013-evolution-4fc04af617091c77dfc9f6353299378918cb69cc.tar.bz2 gsoc2013-evolution-4fc04af617091c77dfc9f6353299378918cb69cc.tar.lz gsoc2013-evolution-4fc04af617091c77dfc9f6353299378918cb69cc.tar.xz gsoc2013-evolution-4fc04af617091c77dfc9f6353299378918cb69cc.tar.zst gsoc2013-evolution-4fc04af617091c77dfc9f6353299378918cb69cc.zip |
Bug 655507 - Crash on startup when initializing spamassassin
I keep forgetting to not use G_PARAM_STATIC_STRINGS in modules...
-rw-r--r-- | modules/spamassassin/evolution-spamassassin.c | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/modules/spamassassin/evolution-spamassassin.c b/modules/spamassassin/evolution-spamassassin.c index 7172afd7aa..b578acf228 100644 --- a/modules/spamassassin/evolution-spamassassin.c +++ b/modules/spamassassin/evolution-spamassassin.c @@ -1086,8 +1086,7 @@ e_spam_assassin_class_init (ESpamAssassinClass *class) "Local Only", "Do not use tests requiring DNS lookups", TRUE, - G_PARAM_READWRITE | - G_PARAM_STATIC_STRINGS)); + G_PARAM_READWRITE)); g_object_class_install_property ( object_class, @@ -1097,8 +1096,7 @@ e_spam_assassin_class_init (ESpamAssassinClass *class) "spamc Binary", "File path for the spamc binary", NULL, - G_PARAM_READWRITE | - G_PARAM_STATIC_STRINGS)); + G_PARAM_READWRITE)); g_object_class_install_property ( object_class, @@ -1108,8 +1106,7 @@ e_spam_assassin_class_init (ESpamAssassinClass *class) "spamd Binary", "File path for the spamd binary", NULL, - G_PARAM_READWRITE | - G_PARAM_STATIC_STRINGS)); + G_PARAM_READWRITE)); g_object_class_install_property ( object_class, @@ -1119,8 +1116,7 @@ e_spam_assassin_class_init (ESpamAssassinClass *class) "Socket Path", "Socket path for a SpamAssassin daemon", NULL, - G_PARAM_READWRITE | - G_PARAM_STATIC_STRINGS)); + G_PARAM_READWRITE)); g_object_class_install_property ( object_class, @@ -1130,8 +1126,7 @@ e_spam_assassin_class_init (ESpamAssassinClass *class) "Use Daemon", "Whether to use a SpamAssassin daemon", FALSE, - G_PARAM_READWRITE | - G_PARAM_STATIC_STRINGS)); + G_PARAM_READWRITE)); } static void |