summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2014-05-18 08:48:07 (GMT)
committerRemko Tronçon <git@el-tramo.be>2014-05-18 08:48:07 (GMT)
commit13bcb579fe1ead0a5dca3defdef73023463c51e4 (patch)
treedf975b9693ad426718f483f35dd32d776f0bf518 /Swift/QtUI/QtTextEdit.cpp
parenta2bd9984a31e426e2ba263e68e6dc0733970026c (diff)
downloadswift-13bcb579fe1ead0a5dca3defdef73023463c51e4.zip
swift-13bcb579fe1ead0a5dca3defdef73023463c51e4.tar.bz2
Fix spell check leaks and errors
Change-Id: Ied0ac4abb21ef1720411fdbc61e7a687eee3afd1
Diffstat (limited to 'Swift/QtUI/QtTextEdit.cpp')
-rw-r--r--Swift/QtUI/QtTextEdit.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/Swift/QtUI/QtTextEdit.cpp b/Swift/QtUI/QtTextEdit.cpp
index cac8bb4..8551f3d 100644
--- a/Swift/QtUI/QtTextEdit.cpp
+++ b/Swift/QtUI/QtTextEdit.cpp
@@ -202,16 +202,12 @@ void QtTextEdit::addSuggestions(QMenu* menu, QContextMenuEvent* event)
#ifdef HAVE_SPELLCHECKER
void QtTextEdit::setUpSpellChecker()
{
- SpellCheckerFactory* checkerFactory = new SpellCheckerFactory();
delete checker_;
+ checker_ = NULL;
if (settings_->getSetting(SettingConstants::SPELL_CHECKER)) {
std::string dictPath = settings_->getSetting(SettingConstants::DICT_PATH);
std::string dictFile = settings_->getSetting(SettingConstants::DICT_FILE);
- checker_ = checkerFactory->createSpellChecker(dictPath + dictFile);
- delete checkerFactory;
- }
- else {
- checker_ = NULL;
+ checker_ = SpellCheckerFactory().createSpellChecker(dictPath + dictFile);
}
}
#endif