summaryrefslogtreecommitdiffstats
path: root/kspell2/plugins/ispell/kspell_ispelldict.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kspell2/plugins/ispell/kspell_ispelldict.cpp
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz
tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kspell2/plugins/ispell/kspell_ispelldict.cpp')
-rw-r--r--kspell2/plugins/ispell/kspell_ispelldict.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/kspell2/plugins/ispell/kspell_ispelldict.cpp b/kspell2/plugins/ispell/kspell_ispelldict.cpp
index 2d3728a6a..35c1e9276 100644
--- a/kspell2/plugins/ispell/kspell_ispelldict.cpp
+++ b/kspell2/plugins/ispell/kspell_ispelldict.cpp
@@ -26,7 +26,7 @@
using namespace KSpell2;
-ISpellDict::ISpellDict( const QString& lang )
+ISpellDict::ISpellDict( const TQString& lang )
: Dictionary( lang )
{
m_checker = new ISpellChecker();
@@ -40,18 +40,18 @@ ISpellDict::~ISpellDict()
{
}
-bool ISpellDict::check( const QString& word )
+bool ISpellDict::check( const TQString& word )
{
return m_checker->checkWord( word );
}
-QStringList ISpellDict::suggest( const QString& word )
+TQStringList ISpellDict::suggest( const TQString& word )
{
return m_checker->suggestWord( word );
}
-bool ISpellDict::checkAndSuggest( const QString& word,
- QStringList& suggestions )
+bool ISpellDict::checkAndSuggest( const TQString& word,
+ TQStringList& suggestions )
{
bool c = check( word );
if ( c )
@@ -59,18 +59,18 @@ bool ISpellDict::checkAndSuggest( const QString& word,
return c;
}
-bool ISpellDict::storeReplacement( const QString& ,
- const QString& )
+bool ISpellDict::storeReplacement( const TQString& ,
+ const TQString& )
{
return false;
}
-bool ISpellDict::addToPersonal( const QString& )
+bool ISpellDict::addToPersonal( const TQString& )
{
return false;
}
-bool ISpellDict::addToSession( const QString& )
+bool ISpellDict::addToSession( const TQString& )
{
return false;
}