summaryrefslogtreecommitdiffstats
path: root/kdecore/kstringhandler.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-30 23:26:07 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-30 23:26:07 +0000
commita3beaa08c4d5275d67447e2ed4e9a1bd2a4c3050 (patch)
tree027a7ec3076c84b189236a4b85d37a9357959fa7 /kdecore/kstringhandler.cpp
parentc0093442ecd61ebdd46f2f682b9f9a3e338677c7 (diff)
downloadtdelibs-a3beaa08c4d5275d67447e2ed4e9a1bd2a4c3050.tar.gz
tdelibs-a3beaa08c4d5275d67447e2ed4e9a1bd2a4c3050.zip
* More TQt/Qt4 features
* Various compilation fixes for Slackware git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1170159 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdecore/kstringhandler.cpp')
-rw-r--r--kdecore/kstringhandler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kdecore/kstringhandler.cpp b/kdecore/kstringhandler.cpp
index 3184c18e2..3c13a9b57 100644
--- a/kdecore/kstringhandler.cpp
+++ b/kdecore/kstringhandler.cpp
@@ -448,7 +448,7 @@ bool KStringHandler::matchFileName( const TQString& filename, const TQString& pa
return ( filename == pattern );
}
- QStringList
+ TQStringList
KStringHandler::perlSplit(const TQString & sep, const TQString & s, uint max)
{
bool ignoreMax = 0 == max;
@@ -474,7 +474,7 @@ KStringHandler::perlSplit(const TQString & sep, const TQString & s, uint max)
return l;
}
- QStringList
+ TQStringList
KStringHandler::perlSplit(const TQChar & sep, const TQString & s, uint max)
{
bool ignoreMax = 0 == max;
@@ -500,7 +500,7 @@ KStringHandler::perlSplit(const TQChar & sep, const TQString & s, uint max)
return l;
}
- QStringList
+ TQStringList
KStringHandler::perlSplit(const TQRegExp & sep, const TQString & s, uint max)
{
bool ignoreMax = 0 == max;