author | jowenn <jowenn> | 2002-11-11 20:37:06 (UTC) |
---|---|---|
committer | jowenn <jowenn> | 2002-11-11 20:37:06 (UTC) |
commit | da541da2e5cec28acb36cbd6e9c04a76375b4ac7 (patch) (unidiff) | |
tree | f016ecc7faaeb45f03674e7239982645da42e8cc | |
parent | 6a0fc9de7e89357095b9efc3dace5c92042291ac (diff) | |
download | opie-da541da2e5cec28acb36cbd6e9c04a76375b4ac7.zip opie-da541da2e5cec28acb36cbd6e9c04a76375b4ac7.tar.gz opie-da541da2e5cec28acb36cbd6e9c04a76375b4ac7.tar.bz2 |
Read keyword lists again
-rw-r--r-- | noncore/apps/tinykate/libkate/document/katesyntaxdocument.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/noncore/apps/tinykate/libkate/document/katesyntaxdocument.cpp b/noncore/apps/tinykate/libkate/document/katesyntaxdocument.cpp index 3390bdb..e45daa4 100644 --- a/noncore/apps/tinykate/libkate/document/katesyntaxdocument.cpp +++ b/noncore/apps/tinykate/libkate/document/katesyntaxdocument.cpp | |||
@@ -293,15 +293,16 @@ QStringList& SyntaxDocument::finddata(const QString& mainGroup,const QString& ty | |||
293 | { | 293 | { |
294 | if (e1->tagName()!="list") continue; | 294 | if (e1->tagName()!="list") continue; |
295 | 295 | ||
296 | if (e1->attribute("name")==type) | 296 | if (e1->attribute("name")==type) |
297 | { | 297 | { |
298 | for (Opie::XMLElement *e2=e1->firstChild();e2;e2=e2->nextChild()) | 298 | for (Opie::XMLElement *e2=e1->firstChild();e2;e2=e2->nextChild()) |
299 | qDebug("FOUND A LIST ENTRY("+e2->tagName()+"):"+e2->value()); | 299 | { |
300 | m_data+="TEST";//e2->value().stripWhiteSpace(); | 300 | qDebug("FOUND A LIST ENTRY("+e2->tagName()+"):"+e2->firstChild()->value()); |
301 | 301 | m_data+=e2->firstChild()->value().stripWhiteSpace(); | |
302 | } | ||
302 | break; | 303 | break; |
303 | } | 304 | } |
304 | } | 305 | } |
305 | break; | 306 | break; |
306 | } | 307 | } |
307 | } | 308 | } |