author | ulf69 <ulf69> | 2004-08-19 23:30:02 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-08-19 23:30:02 (UTC) |
commit | f4149cef5f3be19d64c9c53130a62de0ec28ee44 (patch) (side-by-side diff) | |
tree | 8d6428a0e1e10b368bd0696d1940743d293e7945 | |
parent | d81fbb0a720ba6eb0fbfa1d1eb0748877237a27e (diff) | |
download | kdepimpi-f4149cef5f3be19d64c9c53130a62de0ec28ee44.zip kdepimpi-f4149cef5f3be19d64c9c53130a62de0ec28ee44.tar.gz kdepimpi-f4149cef5f3be19d64c9c53130a62de0ec28ee44.tar.bz2 |
removed debugoutput
-rw-r--r-- | kabc/vcard/VCardv.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/kabc/vcard/VCardv.cpp b/kabc/vcard/VCardv.cpp index 3f0a5e5..391a69e 100644 --- a/kabc/vcard/VCardv.cpp +++ b/kabc/vcard/VCardv.cpp @@ -35,46 +35,42 @@ using namespace VCARD; VCard::VCard() : Entity() { contentLineList_.setAutoDelete( TRUE ); } VCard::VCard(const VCard & x) : Entity(x), group_(x.group_) { contentLineList_.setAutoDelete( TRUE ); - //US - qDebug("VCard::VCard"); QPtrListIterator<ContentLine> it(x.contentLineList_); for (; it.current(); ++it) { ContentLine * c = new ContentLine(*it.current()); contentLineList_.append(c); } } VCard::VCard(const QCString & s) : Entity(s) { contentLineList_.setAutoDelete( TRUE ); } VCard & VCard::operator = (VCard & x) { - //US - qDebug("VCard::operator ="); if (*this == x) return *this; group_ = x.group(); QPtrListIterator<ContentLine> it(x.contentLineList_); for (; it.current(); ++it) { ContentLine * c = new ContentLine(*it.current()); contentLineList_.append(c); } Entity::operator = (x); return *this; } |