author | llornkcor <llornkcor> | 2002-09-01 14:50:06 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-09-01 14:50:06 (UTC) |
commit | 4602b00b2d76fca5c9ab86a589192f6bdb1e7ee7 (patch) (side-by-side diff) | |
tree | 4371833546bed60c7e4d48db8527781c57533bec /core/launcher | |
parent | 2dab5b4aa31d795e968f81eb053ab507d96ff541 (diff) | |
download | opie-4602b00b2d76fca5c9ab86a589192f6bdb1e7ee7.zip opie-4602b00b2d76fca5c9ab86a589192f6bdb1e7ee7.tar.gz opie-4602b00b2d76fca5c9ab86a589192f6bdb1e7ee7.tar.bz2 |
fix for bug 0000014
-rw-r--r-- | core/launcher/launcherview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/launcher/launcherview.cpp b/core/launcher/launcherview.cpp index 0ced256..c54a00f 100644 --- a/core/launcher/launcherview.cpp +++ b/core/launcher/launcherview.cpp @@ -597,7 +597,7 @@ void LauncherView::internalPopulate( AppLnkSet *folder, const QString& typefilte while ( it.current() ) { // show only the icons for existing files - if (!QFile(it.current()->file()).exists() ) + if (!QFile(it.current()->file()).exists() & it.current()->file().left(4) != "http") { //maybe insert some .desktop file deletion code later //maybe dir specific |