summaryrefslogtreecommitdiffstats
path: root/src/fieldcompletion.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-02 06:40:27 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-02 06:40:27 +0000
commit2595a15ebeb6fc46b7cb241d01ec0c2460ec2111 (patch)
tree18a8f0f4ac5a86dacfa74c3537551ec39bc85e75 /src/fieldcompletion.cpp
parent1d90725a4001fab9d3922b2cbcceeee5e2d1686f (diff)
downloadtellico-2595a15ebeb6fc46b7cb241d01ec0c2460ec2111.tar.gz
tellico-2595a15ebeb6fc46b7cb241d01ec0c2460ec2111.zip
TQt4 port tellico
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/tellico@1239054 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/fieldcompletion.cpp')
-rw-r--r--src/fieldcompletion.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/fieldcompletion.cpp b/src/fieldcompletion.cpp
index cfaf894..ecd208f 100644
--- a/src/fieldcompletion.cpp
+++ b/src/fieldcompletion.cpp
@@ -19,17 +19,17 @@ using Tellico::FieldCompletion;
FieldCompletion::FieldCompletion(bool multiple_) : KCompletion(), m_multiple(multiple_) {
}
-QString FieldCompletion::makeCompletion(const QString& string_) {
+TQString FieldCompletion::makeCompletion(const TQString& string_) {
if(completionMode() == KGlobalSettings::CompletionNone) {
m_beginText.truncate(0);
- return QString::null;
+ return TQString();
}
if(!m_multiple) {
return KCompletion::makeCompletion(string_);
}
- static QRegExp rx = Data::Field::delimiter();
+ static TQRegExp rx = Data::Field::delimiter();
int pos = rx.searchRev(string_);
if(pos == -1) {
m_beginText.truncate(0);
@@ -37,7 +37,7 @@ QString FieldCompletion::makeCompletion(const QString& string_) {
}
pos += rx.matchedLength();
- QString final = string_.mid(pos);
+ TQString final = string_.mid(pos);
m_beginText = string_.mid(0, pos);
return m_beginText + KCompletion::makeCompletion(final);
}
@@ -47,15 +47,15 @@ void FieldCompletion::clear() {
KCompletion::clear();
}
-void FieldCompletion::postProcessMatch(QString* match_) const {
+void FieldCompletion::postProcessMatch(TQString* match_) const {
if(m_multiple) {
match_->prepend(m_beginText);
}
}
-void FieldCompletion::postProcessMatches(QStringList* matches_) const {
+void FieldCompletion::postProcessMatches(TQStringList* matches_) const {
if(m_multiple) {
- for(QStringList::Iterator it = matches_->begin(); it != matches_->end(); ++it) {
+ for(TQStringList::Iterator it = matches_->begin(); it != matches_->end(); ++it) {
(*it).prepend(m_beginText);
}
}