diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-06-27 06:25:10 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-06-27 06:25:10 +0800 |
commit | 80ba32b9879fe46e8e8ab37708f421a860388b68 (patch) | |
tree | da0a66db23f02f8e4acd5193743eb26cb6930a03 /mail/mail-preferences.c | |
parent | ecb477e338d306cf8736bf986ae55c31589e2a9d (diff) | |
download | gsoc2013-evolution-80ba32b9879fe46e8e8ab37708f421a860388b68.tar gsoc2013-evolution-80ba32b9879fe46e8e8ab37708f421a860388b68.tar.gz gsoc2013-evolution-80ba32b9879fe46e8e8ab37708f421a860388b68.tar.bz2 gsoc2013-evolution-80ba32b9879fe46e8e8ab37708f421a860388b68.tar.lz gsoc2013-evolution-80ba32b9879fe46e8e8ab37708f421a860388b68.tar.xz gsoc2013-evolution-80ba32b9879fe46e8e8ab37708f421a860388b68.tar.zst gsoc2013-evolution-80ba32b9879fe46e8e8ab37708f421a860388b68.zip |
slight build fixes
svn path=/trunk/; revision=17304
Diffstat (limited to 'mail/mail-preferences.c')
-rw-r--r-- | mail/mail-preferences.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/mail-preferences.c b/mail/mail-preferences.c index 99599df888..e1e36a1509 100644 --- a/mail/mail-preferences.c +++ b/mail/mail-preferences.c @@ -414,8 +414,8 @@ mail_preferences_apply (MailPreferences *prefs) entry = gnome_file_entry_gtk_entry (GNOME_FILE_ENTRY (prefs->notify_sound_file)); string = gtk_entry_get_text (GTK_ENTRY (entry)); - pgp_type = string && *string ? mail_config_pgp_type_detect_from_path (string) : CONFIG_PGP_TYPE_NONE; - if (pgp_type == CONFIG_PGP_TYPE_GPG) { + pgp_type = string && *string ? mail_config_pgp_type_detect_from_path (string) : MAIL_CONFIG_PGP_TYPE_NONE; + if (pgp_type == MAIL_CONFIG_PGP_TYPE_GPG) { mail_config_set_pgp_path (string && *string ? string : NULL); mail_config_set_pgp_type (pgp_type); } |