From 6f62ea1bff318d8efea42f59bdc965ee2ab187a0 Mon Sep 17 00:00:00 2001 From: Thomas McGuire Date: Wed, 11 May 2011 18:21:32 +0100 Subject: [PATCH 4/6] Make spell checking work again. The text edit used the wrong config file for loading spell settings. After using the config file, the correct settigns get loaded again, since the Loader from Sonnet is a singleton and therefore shares the settings, so even the textedit with the wrong settings file name gets updated. cherry-picked from d1708effbb68d6eae36ee5177a599c965973725f. BUG: 247486 --- kmail/kmcomposereditor.cpp | 2 +- libkdepim/kmeditor.cpp | 12 ++++++++++++ libkdepim/kmeditor.h | 6 ++++++ 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/libkdepim/kmeditor.cpp b/libkdepim/kmeditor.cpp index e8f0d36..067c781 100644 --- a/libkdepim/kmeditor.cpp +++ b/libkdepim/kmeditor.cpp @@ -28,6 +28,7 @@ #include #include #include +#include #include #include @@ -215,6 +216,17 @@ KMeditor::KMeditor( QWidget *parent ) d->init(); } +KMeditor::KMeditor( QWidget *parent, const QString & configFile ) +#if KDE_IS_VERSION(4,6,0) + : TextEdit( parent, configFile ), d( new KMeditorPrivate( this ) ) +#else + : TextEdit( parent ), d( new KMeditorPrivate( this ) ) +#endif +{ + Q_UNUSED( configFile ) + d->init(); +} + KMeditor::~KMeditor() { delete d; diff --git a/libkdepim/kmeditor.h b/libkdepim/kmeditor.h index 4aab8aa..66ebb4a 100644 --- a/libkdepim/kmeditor.h +++ b/libkdepim/kmeditor.h @@ -61,6 +61,12 @@ class KDEPIM_EXPORT KMeditor : public KPIMTextEdit::TextEdit */ explicit KMeditor( QWidget *parent = 0 ); + /** + * Constructs a KMeditor object. + */ + explicit KMeditor( QWidget *parent, const QString& configFile ); + + virtual ~KMeditor(); //Redefine it for each apps -- 1.7.9.2