From 6c91ed244ee2ed5a243597a4869d188959938441 Mon Sep 17 00:00:00 2001 From: Anton Kudryavtsev Date: Tue, 12 Jan 2016 11:27:13 +0300 Subject: QFileSystemEngine: fix duplicate flag in OR expression Change-Id: Ib4df3ca1cff2ff2cd09515b94e63741a32b2580b Reviewed-by: Marc Mutz --- src/corelib/io/qfilesystemengine_unix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/corelib/io/qfilesystemengine_unix.cpp b/src/corelib/io/qfilesystemengine_unix.cpp index 8f6d9911e8..2f066aa37a 100644 --- a/src/corelib/io/qfilesystemengine_unix.cpp +++ b/src/corelib/io/qfilesystemengine_unix.cpp @@ -113,7 +113,7 @@ static bool isPackage(const QFileSystemMetaData &data, const QFileSystemEntry &e // Find if an application other than Finder claims to know how to handle the package QCFType application; LSGetApplicationForURL(url, - kLSRolesEditor|kLSRolesViewer|kLSRolesViewer, + kLSRolesEditor|kLSRolesViewer, NULL, &application); -- cgit v1.2.3