-rw-r--r-- | kabc/vcard/VCardv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kabc/vcard/VCardv.cpp b/kabc/vcard/VCardv.cpp index d19a004..bc80707 100644 --- a/kabc/vcard/VCardv.cpp +++ b/kabc/vcard/VCardv.cpp | |||
@@ -185,25 +185,25 @@ VCard::_parse() | |||
185 | refolded.append(cur); | 185 | refolded.append(cur); |
186 | } | 186 | } |
187 | 187 | ||
188 | QStrListIterator it2(refolded); | 188 | QStrListIterator it2(refolded); |
189 | 189 | ||
190 | for (; it2.current(); ++it2) { | 190 | for (; it2.current(); ++it2) { |
191 | vDebug("New contentline using \"" + QCString(it2.current()) + "\""); | 191 | vDebug("New contentline using \"" + QCString(it2.current()) + "\""); |
192 | ContentLine * cl = new ContentLine(it2.current()); | 192 | ContentLine * cl = new ContentLine(it2.current()); |
193 | 193 | ||
194 | cl->parse(); | 194 | cl->parse(); |
195 | if (cl->value() == 0) | 195 | if (cl->value() == 0) |
196 | { | 196 | { |
197 | qDebug("Content line could not be parsed. Discarded: %s" + QCString(it2.current())); | 197 | qDebug("Content line could not be parsed. Discarded: %s", it2.current()); |
198 | delete cl; | 198 | delete cl; |
199 | } | 199 | } |
200 | else | 200 | else |
201 | contentLineList_.append(cl); | 201 | contentLineList_.append(cl); |
202 | } | 202 | } |
203 | 203 | ||
204 | /////////////////////////////////////////////////////////////// | 204 | /////////////////////////////////////////////////////////////// |
205 | // LAST LINE | 205 | // LAST LINE |
206 | 206 | ||
207 | split = endLine.find(':'); | 207 | split = endLine.find(':'); |
208 | 208 | ||
209 | if (split == -1) // invalid, no END | 209 | if (split == -1) // invalid, no END |