summaryrefslogtreecommitdiffstats
path: root/kabc/vcard/VCard.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 /kabc/vcard/VCard.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 'kabc/vcard/VCard.cpp')
-rw-r--r--kabc/vcard/VCard.cpp42
1 files changed, 21 insertions, 21 deletions
diff --git a/kabc/vcard/VCard.cpp b/kabc/vcard/VCard.cpp
index 8a65ecfd4..50c25da59 100644
--- a/kabc/vcard/VCard.cpp
+++ b/kabc/vcard/VCard.cpp
@@ -21,8 +21,8 @@
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-#include <qcstring.h>
-#include <qstrlist.h>
+#include <tqcstring.h>
+#include <tqstrlist.h>
#include <VCardEntity.h>
#include <VCardVCard.h>
@@ -46,7 +46,7 @@ VCard::VCard(const VCard & x)
{
}
-VCard::VCard(const QCString & s)
+VCard::VCard(const TQCString & s)
: Entity(s)
{
}
@@ -64,7 +64,7 @@ VCard::operator = (VCard & x)
}
VCard &
-VCard::operator = (const QCString & s)
+VCard::operator = (const TQCString & s)
{
Entity::operator = (s);
return *this;
@@ -85,7 +85,7 @@ VCard::~VCard()
VCard::_parse()
{
vDebug("parse() called");
- QStrList l;
+ TQStrList l;
RTokenise(strRep_, "\r\n", l);
@@ -95,16 +95,16 @@ VCard::_parse()
}
// Get the first line
- QCString beginLine = QCString(l.at(0)).stripWhiteSpace();
+ TQCString beginLine = TQCString(l.at(0)).stripWhiteSpace();
vDebug("Begin line == \"" + beginLine + "\"");
// Remove extra blank lines
- while (QCString(l.last()).isEmpty())
+ while (TQCString(l.last()).isEmpty())
l.remove(l.last());
// Now we know this is the last line
- QCString endLine = l.last();
+ TQCString endLine = l.last();
// Trash the first and last lines as we have seen them.
l.remove(0u);
@@ -120,8 +120,8 @@ VCard::_parse()
return;
}
- QCString firstPart(beginLine.left(split));
- QCString valuePart(beginLine.mid(split + 1));
+ TQCString firstPart(beginLine.left(split));
+ TQCString valuePart(beginLine.mid(split + 1));
split = firstPart.find('.');
@@ -147,11 +147,11 @@ VCard::_parse()
// Handle folded lines.
- QStrList refolded;
+ TQStrList refolded;
- QStrListIterator it(l);
+ TQStrListIterator it(l);
- QCString cur;
+ TQCString cur;
for (; it.current(); ++it) {
@@ -173,11 +173,11 @@ VCard::_parse()
refolded.append(cur);
}
- QStrListIterator it2(refolded);
+ TQStrListIterator it2(refolded);
for (; it2.current(); ++it2) {
- vDebug("New contentline using \"" + QCString(it2.current()) + "\"");
+ vDebug("New contentline using \"" + TQCString(it2.current()) + "\"");
ContentLine * cl = new ContentLine(it2.current());
cl->parse();
@@ -217,7 +217,7 @@ VCard::_assemble()
strRep_ = "BEGIN:VCARD\r\n";
strRep_ += "VERSION:3.0\r\n";
- QPtrListIterator<ContentLine> it(contentLineList_);
+ TQPtrListIterator<ContentLine> it(contentLineList_);
for (; it.current(); ++it)
strRep_ += it.current()->asString() + "\r\n";
@@ -233,7 +233,7 @@ VCard::has(EntityType t)
}
bool
-VCard::has(const QCString & s)
+VCard::has(const TQCString & s)
{
parse();
return contentLine(s) == 0 ? false : true;
@@ -248,7 +248,7 @@ VCard::add(const ContentLine & cl)
}
void
-VCard::add(const QCString & s)
+VCard::add(const TQCString & s)
{
parse();
ContentLine * c = new ContentLine(s);
@@ -259,7 +259,7 @@ VCard::add(const QCString & s)
VCard::contentLine(EntityType t)
{
parse();
- QPtrListIterator<ContentLine> it(contentLineList_);
+ TQPtrListIterator<ContentLine> it(contentLineList_);
for (; it.current(); ++it)
if (it.current()->entityType() == t)
@@ -269,10 +269,10 @@ VCard::contentLine(EntityType t)
}
ContentLine *
-VCard::contentLine(const QCString & s)
+VCard::contentLine(const TQCString & s)
{
parse();
- QPtrListIterator<ContentLine> it(contentLineList_);
+ TQPtrListIterator<ContentLine> it(contentLineList_);
for (; it.current(); ++it)
if (it.current()->entityType() == EntityNameToEntityType(s))