diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-14 21:19:13 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-15 00:30:59 +0900 |
commit | 3d581777cdf9c0ff8dc7e757a2cd576f69e96b51 (patch) | |
tree | d7ec6ca39a46ae475336025d1c11e27fe23a47e8 /src/gui/lineedit.cpp | |
parent | 10996a19ed32a39c2177936026b798cae63e01bd (diff) | |
download | tellico-3d581777cdf9c0ff8dc7e757a2cd576f69e96b51.tar.gz tellico-3d581777cdf9c0ff8dc7e757a2cd576f69e96b51.zip |
Remove various '#define' strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/gui/lineedit.cpp')
-rw-r--r-- | src/gui/lineedit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/lineedit.cpp b/src/gui/lineedit.cpp index 1da38ca..1096671 100644 --- a/src/gui/lineedit.cpp +++ b/src/gui/lineedit.cpp @@ -28,7 +28,7 @@ LineEdit::LineEdit(TQWidget* parent_, const char* name_) : KLineEdit(parent_, na , m_allowSpellCheck(false) , m_enableSpellCheck(true) , m_spell(0) { - m_spellAction = KStdAction::spelling(TQT_TQOBJECT(this), TQT_SLOT(slotCheckSpelling()), new TDEActionCollection(this)); + m_spellAction = KStdAction::spelling(this, TQT_SLOT(slotCheckSpelling()), new TDEActionCollection(this)); } void LineEdit::clear() { @@ -110,7 +110,7 @@ void LineEdit::slotCheckSpelling() { delete m_spell; // re-use the action string to get translations m_spell = new KSpell(this, m_spellAction->text(), - TQT_TQOBJECT(this), TQT_SLOT(slotSpellCheckReady(KSpell*)), 0, true, true); + this, TQT_SLOT(slotSpellCheckReady(KSpell*)), 0, true, true); connect(m_spell, TQT_SIGNAL(death()), TQT_SLOT(spellCheckerFinished())); |