author | alwin <alwin> | 2005-03-07 12:20:41 (UTC) |
---|---|---|
committer | alwin <alwin> | 2005-03-07 12:20:41 (UTC) |
commit | 4515ff72db76ba63dcf3b29b19d930b7e083d508 (patch) (unidiff) | |
tree | 633264a5352e27dd77107f6713a5c4a8872608bf | |
parent | d6fc7417f752867c14a0b6555c32f2d768736fe8 (diff) | |
download | opie-4515ff72db76ba63dcf3b29b19d930b7e083d508.zip opie-4515ff72db76ba63dcf3b29b19d930b7e083d508.tar.gz opie-4515ff72db76ba63dcf3b29b19d930b7e083d508.tar.bz2 |
docLnk->isValid returns if the .doclnk file exists
so its sensless here - we want the check if the real
file exists.
-rw-r--r-- | noncore/graphics/opie-eye/impl/doc/doc_lister.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/noncore/graphics/opie-eye/impl/doc/doc_lister.cpp b/noncore/graphics/opie-eye/impl/doc/doc_lister.cpp index 5281b75..d4da266 100644 --- a/noncore/graphics/opie-eye/impl/doc/doc_lister.cpp +++ b/noncore/graphics/opie-eye/impl/doc/doc_lister.cpp | |||
@@ -84,5 +84,6 @@ QStringList Doc_DirLister::files()const { | |||
84 | QListIterator<DocLnk> dit(m_ds.children()); | 84 | QListIterator<DocLnk> dit(m_ds.children()); |
85 | for( ; dit.current(); ++dit) { | 85 | for( ; dit.current(); ++dit) { |
86 | if (!(*dit)->isValid()) continue; | 86 | /* check if the real file exists! */ |
87 | if (!(*dit)->fileKnown()||!QFile::exists( (*dit)->file())) continue; | ||
87 | if (!matchCat((*dit))) continue; | 88 | if (!matchCat((*dit))) continue; |
88 | QString s = (*dit)->name(); | 89 | QString s = (*dit)->name(); |