author | alwin <alwin> | 2004-11-14 17:56:36 (UTC) |
---|---|---|
committer | alwin <alwin> | 2004-11-14 17:56:36 (UTC) |
commit | 4763ca7911e452b6e36b00999eb243e6549e5cb5 (patch) (unidiff) | |
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 | |||
@@ -83,6 +83,7 @@ QStringList Doc_DirLister::files()const { | |||
83 | QStringList out; | 83 | QStringList out; |
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 | if (!matchCat((*dit))) continue; | 87 | if (!matchCat((*dit))) continue; |
87 | QString s = (*dit)->name(); | 88 | QString s = (*dit)->name(); |
88 | s+=char(0); | 89 | s+=char(0); |
@@ -155,9 +156,12 @@ QWidget* Doc_DirLister::widget(QWidget*parent) | |||
155 | 156 | ||
156 | void Doc_DirLister::showCategory(int which) | 157 | void Doc_DirLister::showCategory(int which) |
157 | { | 158 | { |
159 | odebug<<"Show cat " << which << oendl; | ||
158 | m_catFilter = which==-2?0:which; | 160 | m_catFilter = which==-2?0:which; |
159 | setStartPath(""); | 161 | setStartPath(""); |
162 | odebug<<"Show cat before emit" << oendl; | ||
160 | emit sig_reloadDir(); | 163 | emit sig_reloadDir(); |
164 | odebug<<"Show cat - emit signal finished" << oendl; | ||
161 | } | 165 | } |
162 | 166 | ||
163 | void Doc_DirLister::systemMsg(const QCString &msg, const QByteArray &data) | 167 | void Doc_DirLister::systemMsg(const QCString &msg, const QByteArray &data) |
@@ -165,6 +169,8 @@ void Doc_DirLister::systemMsg(const QCString &msg, const QByteArray &data) | |||
165 | if ( msg != "linkChanged(QString)"||!m_docreads) { | 169 | if ( msg != "linkChanged(QString)"||!m_docreads) { |
166 | return; | 170 | return; |
167 | } | 171 | } |
172 | #if 0 | ||
173 | // makes big problems on zaurus! | ||
168 | QString link; | 174 | QString link; |
169 | QDataStream stream( data, IO_ReadOnly ); | 175 | QDataStream stream( data, IO_ReadOnly ); |
170 | stream >> link; | 176 | stream >> link; |
@@ -198,4 +204,5 @@ void Doc_DirLister::systemMsg(const QCString &msg, const QByteArray &data) | |||
198 | setStartPath(""); | 204 | setStartPath(""); |
199 | emit sig_reloadDir(); | 205 | emit sig_reloadDir(); |
200 | } | 206 | } |
207 | #endif | ||
201 | } | 208 | } |