author | alwin <alwin> | 2004-11-14 17:56:36 (UTC) |
---|---|---|
committer | alwin <alwin> | 2004-11-14 17:56:36 (UTC) |
commit | 4763ca7911e452b6e36b00999eb243e6549e5cb5 (patch) (side-by-side diff) | |
tree | d947ad65bd55933df22cf5454d02110abbc9157c | |
parent | efd57e13cd3114ab7419ff34c2496cd8289ed5fe (diff) | |
download | opie-4763ca7911e452b6e36b00999eb243e6549e5cb5.zip opie-4763ca7911e452b6e36b00999eb243e6549e5cb5.tar.gz opie-4763ca7911e452b6e36b00999eb243e6549e5cb5.tar.bz2 |
disabled code which makes problems on Z
-rw-r--r-- | noncore/graphics/opie-eye/impl/doc/doc_lister.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/noncore/graphics/opie-eye/impl/doc/doc_lister.cpp b/noncore/graphics/opie-eye/impl/doc/doc_lister.cpp index 8bcf01d..4a491e2 100644 --- a/noncore/graphics/opie-eye/impl/doc/doc_lister.cpp +++ b/noncore/graphics/opie-eye/impl/doc/doc_lister.cpp @@ -84,4 +84,5 @@ QStringList Doc_DirLister::files()const { QListIterator<DocLnk> dit(m_ds.children()); for( ; dit.current(); ++dit) { + if (!(*dit)->isValid()) continue; if (!matchCat((*dit))) continue; QString s = (*dit)->name(); @@ -156,7 +157,10 @@ QWidget* Doc_DirLister::widget(QWidget*parent) void Doc_DirLister::showCategory(int which) { + odebug<<"Show cat " << which << oendl; m_catFilter = which==-2?0:which; setStartPath(""); + odebug<<"Show cat before emit" << oendl; emit sig_reloadDir(); + odebug<<"Show cat - emit signal finished" << oendl; } @@ -166,4 +170,6 @@ void Doc_DirLister::systemMsg(const QCString &msg, const QByteArray &data) return; } +#if 0 + // makes big problems on zaurus! QString link; QDataStream stream( data, IO_ReadOnly ); @@ -199,3 +205,4 @@ void Doc_DirLister::systemMsg(const QCString &msg, const QByteArray &data) emit sig_reloadDir(); } +#endif } |