aboutsummaryrefslogtreecommitdiffstats
path: root/composer/evolution-composer.c
diff options
context:
space:
mode:
Diffstat (limited to 'composer/evolution-composer.c')
-rw-r--r--composer/evolution-composer.c14
1 files changed, 2 insertions, 12 deletions
diff --git a/composer/evolution-composer.c b/composer/evolution-composer.c
index ef9456c1aa..6dfddf1202 100644
--- a/composer/evolution-composer.c
+++ b/composer/evolution-composer.c
@@ -257,19 +257,9 @@ static void
init (EvolutionComposer *composer)
{
const MailConfigAccount *account;
- gboolean send_html;
- gchar *sig_file = NULL;
- account = mail_config_get_default_account ();
- send_html = mail_config_get_send_html ();
-
- if (account->id)
- sig_file = account->id->signature;
-
- if (sig_file)
- composer->composer = e_msg_composer_new_with_sig_file (sig_file, send_html);
- else
- composer->composer = e_msg_composer_new ();
+ account = mail_config_get_default_account ();
+ composer->composer = e_msg_composer_new_with_sig_file ();
gtk_signal_connect (GTK_OBJECT (composer->composer), "send",
GTK_SIGNAL_FUNC (send_cb), NULL);
| | | | | | | | | | as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330 * Bump PORTREVISION for ports depending on the canonical version of GCCgerald2018-12-121-1/+1 | | | | | | | | | | | | | | | defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590 * Fix build on gcc-based archs.linimon2018-10-281-0/+1 | | | | Approved by: portmgr (tier-2 blanket) * - Add LICENSEamdmi32018-09-132-1/+3 | | | | | | - Update WWW Approved by: portmgr blanket * sysutils/abgx360gui: Fix build with Clang 6tobik2018-08-011-0/+51 | | | | | | | | src/abgx360gui.cpp:2459:66: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal] str = wxT("Your StealthFiles folder is located here:"NEWLINE); ^ beefy12.nyi.freebsd.org/data/head-amd64-default/p475964_s336959/logs/errors/abgx360gui-1.0.2_7.log * Remove no-op WX_UNICODEsunpoet2017-06-10