-rw-r--r-- | core/launcher/documentlist.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/core/launcher/documentlist.cpp b/core/launcher/documentlist.cpp index fd385d6..35a5d56 100644 --- a/core/launcher/documentlist.cpp +++ b/core/launcher/documentlist.cpp | |||
@@ -119,9 +119,9 @@ DocumentList::DocumentList( ServerInterface *serverGui, bool /*scanDocs*/, | |||
119 | cfg.setGroup( "DocTab" ); | 119 | cfg.setGroup( "DocTab" ); |
120 | d->scanDocs = cfg.readBoolEntry( "Enable", true ); | 120 | d->scanDocs = cfg.readBoolEntry( "Enable", true ); |
121 | odebug << "DocumentList::DocumentList() : scanDocs = " << d->scanDocs << "" << oendl; | 121 | odebug << "DocumentList::DocumentList() : scanDocs = " << d->scanDocs << "" << oendl; |
122 | 122 | ||
123 | QTimer::singleShot( 10, this, SLOT( startInitialScan() ) ); | 123 | QTimer::singleShot( 0, this, SLOT( startInitialScan() ) ); |
124 | } | 124 | } |
125 | 125 | ||
126 | void DocumentList::startInitialScan() | 126 | void DocumentList::startInitialScan() |
127 | { | 127 | { |
@@ -186,9 +186,9 @@ void DocumentList::resendWorker() | |||
186 | */ | 186 | */ |
187 | 187 | ||
188 | void DocumentList::rescan() | 188 | void DocumentList::rescan() |
189 | { | 189 | { |
190 | //odebug << "rescan" << oendl; | 190 | owarn << "XXXXXXXXXXX rescan" << oendl; |
191 | pause(); | 191 | pause(); |
192 | d->initialize(); | 192 | d->initialize(); |
193 | resume(); | 193 | resume(); |
194 | } | 194 | } |
@@ -700,9 +700,11 @@ const QString DocumentListPrivate::nextFile() | |||
700 | listPositions[searchDepth]++; | 700 | listPositions[searchDepth]++; |
701 | QString bn = fi->fileName(); | 701 | QString bn = fi->fileName(); |
702 | if ( bn[0] != '.' ) { | 702 | if ( bn[0] != '.' ) { |
703 | if ( fi->isDir() ) { | 703 | if ( fi->isDir() ) { |
704 | if ( bn != "CVS" && bn != "Qtopia" && bn != "QtPalmtop" ) { | 704 | if ( bn != "CVS" && bn != "Qtopia" && bn != "QtPalmtop" |
705 | && bn != "proc" && bn != "dev" && bn != "bin" && bn != "usr" | ||
706 | && bn != "etc" && bn != "lib" && bn != "sbin" && bn != "tmp" && bn != "var") { | ||
705 | // go down a depth | 707 | // go down a depth |
706 | QDir dir( fi->filePath() ); | 708 | QDir dir( fi->filePath() ); |
707 | // odebug << "now going in to path: " << bn << "" << oendl; | 709 | // odebug << "now going in to path: " << bn << "" << oendl; |
708 | if ( !dir.exists( ".Qtopia-ignore" ) ) { | 710 | if ( !dir.exists( ".Qtopia-ignore" ) ) { |