author | bipolar <bipolar> | 2002-03-09 03:09:15 (UTC) |
---|---|---|
committer | bipolar <bipolar> | 2002-03-09 03:09:15 (UTC) |
commit | cb1d684a68565ff70fedd184eedf1ef4f2b71079 (patch) (side-by-side diff) | |
tree | 51dc13c1eaa2408b6e753de751bcb7ac2d02f7e8 | |
parent | bc79d3f4a7503c4298a5396b80c65a3e268f4be3 (diff) | |
download | opie-cb1d684a68565ff70fedd184eedf1ef4f2b71079.zip opie-cb1d684a68565ff70fedd184eedf1ef4f2b71079.tar.gz opie-cb1d684a68565ff70fedd184eedf1ef4f2b71079.tar.bz2 |
ljp: hopefully took care of doclnk creating zero size files, while maintaining what was going on.
-rw-r--r-- | core/launcher/launcher.cpp | 4 | ||||
-rw-r--r-- | core/launcher/launcherview.cpp | 7 |
2 files changed, 4 insertions, 7 deletions
diff --git a/core/launcher/launcher.cpp b/core/launcher/launcher.cpp index 0573330..8fe41f7 100644 --- a/core/launcher/launcher.cpp +++ b/core/launcher/launcher.cpp @@ -755,18 +755,18 @@ void Launcher::systemMessage( const QCString &msg, const QByteArray &data) } contents += QString("Size = %1\n").arg( fi.size() ); } //qDebug( "sending length %d", contents.length() ); QCopEnvelope e( "QPE/Desktop", "docLinks(QString)" ); e << contents; - //qDebug( "================ \n\n%s\n\n===============", - //contents.latin1() ); + qDebug( "================ \n\n%s\n\n===============", + contents.latin1() ); delete docsFolder; docsFolder = 0; } } void Launcher::cancelSync() { diff --git a/core/launcher/launcherview.cpp b/core/launcher/launcherview.cpp index 764f088..538ad79 100644 --- a/core/launcher/launcherview.cpp +++ b/core/launcher/launcherview.cpp @@ -387,29 +387,26 @@ void LauncherIconView::hideOrShowItems(bool resort) bool LauncherIconView::removeLink(const QString& linkfile) { LauncherItem* item = (LauncherItem*)firstItem(); AppLnk* l; bool did = FALSE; DocLnk dl(linkfile); while (item) { l = item->appLnk(); - if ( l->linkFileKnown() && l->linkFile() == linkfile || l->file() == linkfile - || dl.isValid() && dl.file() == l->file() ) { + if ( l->linkFileKnown() && l->linkFile() == linkfile/* || l->file() == linkfile || dl.isValid() && dl.file() == l->file()*/ ) { delete item; did = TRUE; } item = (LauncherItem*)item->nextItem(); } QListIterator<AppLnk> it(hidden); while ((l=it.current())) { ++it; - if ( l->linkFileKnown() && l->linkFile() == linkfile - || l->file() == linkfile - || dl.isValid() && dl.file() == l->file() ) { + if ( l->linkFileKnown() && l->linkFile() == linkfile/* || l->file() == linkfile || dl.isValid() && dl.file() == l->file()*/ ) { hidden.removeRef(l); did = TRUE; } } return did; } LauncherView::LauncherView( QWidget* parent, const char* name, WFlags fl ) |