diff options
author | Vlad Voicu <vladvoic@gmail.com> | 2011-11-29 02:41:07 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2012-03-09 15:04:00 (GMT) |
commit | b50c56cbeafa1ea15d71829ef2f633cb212f8fcc (patch) | |
tree | c9f7a639d8c77fb4894ec4a827f9494e99afb097 /Swift | |
parent | 404b087a11144c66416513929eb57c9786f41ffe (diff) | |
download | swift-contrib-b50c56cbeafa1ea15d71829ef2f633cb212f8fcc.zip swift-contrib-b50c56cbeafa1ea15d71829ef2f633cb212f8fcc.tar.bz2 |
Added Factory for creeating SpellCheckers
Diffstat (limited to 'Swift')
-rw-r--r-- | Swift/QtUI/QtTextEdit.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Swift/QtUI/QtTextEdit.cpp b/Swift/QtUI/QtTextEdit.cpp index e1fdd26..0d0f31c 100644 --- a/Swift/QtUI/QtTextEdit.cpp +++ b/Swift/QtUI/QtTextEdit.cpp @@ -4,6 +4,7 @@ * See Documentation/Licenses/GPLv3.txt for more information. */ +#include <SwifTools/SpellCheckerFactory.h> #include <SwifTools/SpellChecker.h> #include <Swift/QtUI/QtTextEdit.h> @@ -16,10 +17,12 @@ namespace Swift { -QtTextEdit::QtTextEdit(QWidget* parent) : QTextEdit(parent){ +QtTextEdit::QtTextEdit(QWidget* parent) : QTextEdit(parent) { connect(this, SIGNAL(textChanged()), this, SLOT(handleTextChanged())); handleTextChanged(); - checker_ = new SpellChecker(); + SpellCheckerFactory *checkerFactory = new SpellCheckerFactory(); + checker_ = checkerFactory->createSpellChecker(); + delete checkerFactory; }; QtTextEdit::~QtTextEdit() { |