summaryrefslogtreecommitdiffstats
path: root/katapult/plugins/catalogs/spellcatalog/spelling.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:33:28 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:33:28 +0900
commit5110b0e8024d655ce89d79ffea993e3dc267067d (patch)
treef81bbbf6e2e81b23c7ad08ef46457970e9b70e29 /katapult/plugins/catalogs/spellcatalog/spelling.cpp
parent0ef0859244d2a2913274723ce431097ed2668cbe (diff)
downloadkatapult-5110b0e8024d655ce89d79ffea993e3dc267067d.tar.gz
katapult-5110b0e8024d655ce89d79ffea993e3dc267067d.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'katapult/plugins/catalogs/spellcatalog/spelling.cpp')
-rw-r--r--katapult/plugins/catalogs/spellcatalog/spelling.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/katapult/plugins/catalogs/spellcatalog/spelling.cpp b/katapult/plugins/catalogs/spellcatalog/spelling.cpp
index 99309ce..6a1c4af 100644
--- a/katapult/plugins/catalogs/spellcatalog/spelling.cpp
+++ b/katapult/plugins/catalogs/spellcatalog/spelling.cpp
@@ -34,13 +34,13 @@
Spelling::Spelling(SpellCatalog* catalog, const TQString& text): KatapultItem(), _catalog(catalog), _text(text)
{
- spellChecker = new KSpell( 0, "caption", this, TQT_SLOT(spellCheckerReady()) );
+ spellChecker = new KSpell( 0, "caption", this, TQ_SLOT(spellCheckerReady()) );
- connect( spellChecker, TQT_SIGNAL(misspelling(const TQString&, const TQStringList&, unsigned int)),
- this, TQT_SLOT(spellCheckerMisspelling(const TQString&, const TQStringList&, unsigned int)) );
+ connect( spellChecker, TQ_SIGNAL(misspelling(const TQString&, const TQStringList&, unsigned int)),
+ this, TQ_SLOT(spellCheckerMisspelling(const TQString&, const TQStringList&, unsigned int)) );
- connect( spellChecker, TQT_SIGNAL(corrected(const TQString&, const TQString&, unsigned int)),
- this, TQT_SLOT(spellCheckerCorrected(const TQString&, const TQString&, unsigned int)) );
+ connect( spellChecker, TQ_SIGNAL(corrected(const TQString&, const TQString&, unsigned int)),
+ this, TQ_SLOT(spellCheckerCorrected(const TQString&, const TQString&, unsigned int)) );
evaluate();
}