-rw-r--r-- | library/global.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/library/global.cpp b/library/global.cpp index 05d23ac..6c0a66a 100644 --- a/library/global.cpp +++ b/library/global.cpp | |||
@@ -26,6 +26,7 @@ | |||
26 | #include <qpe/storage.h> | 26 | #include <qpe/storage.h> |
27 | #include <qpe/applnk.h> | 27 | #include <qpe/applnk.h> |
28 | #include <qpe/qcopenvelope_qws.h> | 28 | #include <qpe/qcopenvelope_qws.h> |
29 | #include <qpe/config.h> | ||
29 | 30 | ||
30 | #include <qfile.h> | 31 | #include <qfile.h> |
31 | #include <qlabel.h> | 32 | #include <qlabel.h> |
@@ -770,8 +771,16 @@ void Global::findDocuments(DocLnkSet* folder, const QString &mimefilter) | |||
770 | QString path = (*it)->path(); | 771 | QString path = (*it)->path(); |
771 | if( !checkStorage((*it)->path() + "/.opiestorage.cf" ) ) | 772 | if( !checkStorage((*it)->path() + "/.opiestorage.cf" ) ) |
772 | continue; | 773 | continue; |
773 | DocLnkSet ide( path, mimefilter ); | 774 | Config conf((*it)->path() + "/.opiestorage.cf", Config::File ); |
775 | conf.setGroup("subdirs"); | ||
776 | QStringList subDirs = conf.readListEntry("subdirs",':'); | ||
777 | if (subDirs.isEmpty()) { | ||
778 | subDirs.append("Documents"); | ||
779 | } | ||
780 | for (unsigned c = 0; c < subDirs.count();++c) { | ||
781 | DocLnkSet ide( path+"/"+subDirs[c], mimefilter ); | ||
774 | folder->appendFrom(ide); | 782 | folder->appendFrom(ide); |
783 | } | ||
775 | } else if ( (*it)->disk() == "/dev/mtdblock6" || (*it)->disk() == "tmpfs" ) { | 784 | } else if ( (*it)->disk() == "/dev/mtdblock6" || (*it)->disk() == "tmpfs" ) { |
776 | QString path = (*it)->path() + "/Documents"; | 785 | QString path = (*it)->path() + "/Documents"; |
777 | DocLnkSet ide( path, mimefilter ); | 786 | DocLnkSet ide( path, mimefilter ); |