summaryrefslogtreecommitdiff
path: root/core/launcher/launcherview.cpp
Side-by-side diff
Diffstat (limited to 'core/launcher/launcherview.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/launcherview.cpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/core/launcher/launcherview.cpp b/core/launcher/launcherview.cpp
index fa46543..6e63fca 100644
--- a/core/launcher/launcherview.cpp
+++ b/core/launcher/launcherview.cpp
@@ -490,10 +490,9 @@ bool LauncherIconView::removeLink(const QString& linkfile)
DocLnk dl(linkfile);
while (item) {
l = item->appLnk();
- if ( l->linkFileKnown() && l->linkFile() == linkfile
- || l->fileKnown() && (
- l->file() == linkfile
- || dl.isValid() && dl.file() == l->file() ) ) {
+ if ( ( l->linkFileKnown() && ( l->linkFile() == linkfile ))
+ || ( l->fileKnown() && ( l->file() == linkfile ))
+ || ( dl.fileKnown() && l->fileKnown() && ( dl.file() == l->file() )) ) {
delete item;
did = TRUE;
}
@@ -502,9 +501,9 @@ bool LauncherIconView::removeLink(const QString& linkfile)
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.fileKnown() && ( dl.file() == l->file() )) ) {
hidden.removeRef(l);
did = TRUE;
}