author | jowenn <jowenn> | 2002-11-10 21:47:40 (UTC) |
---|---|---|
committer | jowenn <jowenn> | 2002-11-10 21:47:40 (UTC) |
commit | 727eb9283d10cf61cc7f7a8506124cab9f37f2ed (patch) (unidiff) | |
tree | eab18cc8dcb30b390bcded5c9107af9bff42da0a | |
parent | 846ab99d6f52efaf3b2cc98231fe5fc985878516 (diff) | |
download | opie-727eb9283d10cf61cc7f7a8506124cab9f37f2ed.zip opie-727eb9283d10cf61cc7f7a8506124cab9f37f2ed.tar.gz opie-727eb9283d10cf61cc7f7a8506124cab9f37f2ed.tar.bz2 |
Look in the correct directory for hl files
-rw-r--r-- | noncore/apps/tinykate/libkate/document/katesyntaxdocument.cpp | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/noncore/apps/tinykate/libkate/document/katesyntaxdocument.cpp b/noncore/apps/tinykate/libkate/document/katesyntaxdocument.cpp index c51221b..3390bdb 100644 --- a/noncore/apps/tinykate/libkate/document/katesyntaxdocument.cpp +++ b/noncore/apps/tinykate/libkate/document/katesyntaxdocument.cpp | |||
@@ -24,8 +24,8 @@ | |||
24 | #include <qstringlist.h> | 24 | #include <qstringlist.h> |
25 | #include <kconfig.h> | 25 | #include <kconfig.h> |
26 | #include <kglobal.h> | 26 | #include <kglobal.h> |
27 | 27 | #include <qpe/qpeapplication.h> | |
28 | 28 | #include <qdir.h> | |
29 | 29 | ||
30 | SyntaxDocument::SyntaxDocument() | 30 | SyntaxDocument::SyntaxDocument() |
31 | { | 31 | { |
@@ -54,11 +54,15 @@ void SyntaxDocument::setupModeList(bool force) | |||
54 | KConfig *config=KGlobal::config(); | 54 | KConfig *config=KGlobal::config(); |
55 | KStandardDirs *dirs = KGlobal::dirs(); | 55 | KStandardDirs *dirs = KGlobal::dirs(); |
56 | 56 | ||
57 | QStringList list=dirs->findAllResources("data","kate/syntax/*.xml",false,true); | 57 | // QStringList list=dirs->findAllResources("data","kate/syntax/*.xml",false,true); |
58 | QString path=QPEApplication::qpeDir() +"share/tinykate/syntax/"; | ||
59 | |||
60 | QDir dir(path); | ||
61 | QStringList list=dir.entryList("*.xml"); | ||
58 | 62 | ||
59 | for ( QStringList::Iterator it = list.begin(); it != list.end(); ++it ) | 63 | for ( QStringList::Iterator it = list.begin(); it != list.end(); ++it ) |
60 | { | 64 | { |
61 | QString Group="Highlighting_Cache"+*it; | 65 | QString Group="Highlighting_Cache"+path+*it; |
62 | 66 | ||
63 | if ((config->hasGroup(Group)) && (!force)) | 67 | if ((config->hasGroup(Group)) && (!force)) |
64 | { | 68 | { |
@@ -73,8 +77,8 @@ void SyntaxDocument::setupModeList(bool force) | |||
73 | } | 77 | } |
74 | else | 78 | else |
75 | { | 79 | { |
76 | qDebug("Found a description file:"+(*it)); | 80 | qDebug("Found a description file:"+path+(*it)); |
77 | setIdentifier(*it); | 81 | setIdentifier(path+(*it)); |
78 | Opie::XMLElement *e=m_root; | 82 | Opie::XMLElement *e=m_root; |
79 | if (e) | 83 | if (e) |
80 | { | 84 | { |
@@ -91,7 +95,7 @@ void SyntaxDocument::setupModeList(bool force) | |||
91 | if (mli->section.isEmpty()) | 95 | if (mli->section.isEmpty()) |
92 | mli->section=i18n("Other"); | 96 | mli->section=i18n("Other"); |
93 | 97 | ||
94 | mli->identifier = *it; | 98 | mli->identifier = path+(*it); |
95 | #warning fixme | 99 | #warning fixme |
96 | /* | 100 | /* |
97 | config->setGroup(Group); | 101 | config->setGroup(Group); |