Git commit b1478006765a68e76e806a180ecc58df06e7ea92 by Stefan Br=C3=BCns. Committed on 30/08/2018 at 21:13. Pushed by bruns into branch 'master'. [KMountPoint] Remove Windows CE support Summary: The Windows CE line ended in 2012, with Windows Mobile 8. Remove supporting code. Reviewers: #frameworks, #windows, vonreth, dhaumann Reviewed By: #windows, vonreth, dhaumann Subscribers: dhaumann, kde-frameworks-devel Tags: #frameworks Differential Revision: https://phabricator.kde.org/D15158 M +1 -6 src/core/kmountpoint.cpp https://commits.kde.org/kio/b1478006765a68e76e806a180ecc58df06e7ea92 diff --git a/src/core/kmountpoint.cpp b/src/core/kmountpoint.cpp index 4216a09e..56a0e809 100644 --- a/src/core/kmountpoint.cpp +++ b/src/core/kmountpoint.cpp @@ -320,7 +320,7 @@ KMountPoint::List KMountPoint::currentMountPoints(Detai= lsNeededFlags infoNeeded) result.append(mp); } = -#elif defined(Q_OS_WIN) && !defined(_WIN32_WCE) +#elif defined(Q_OS_WIN) //nothing fancy with infoNeeded but it gets the job done DWORD bits =3D GetLogicalDrives(); if (!bits) { @@ -335,11 +335,6 @@ KMountPoint::List KMountPoint::currentMountPoints(Deta= ilsNeededFlags infoNeeded) } } = -#elif defined(_WIN32_WCE) - Ptr mp(new KMountPoint); - mp->d->mountPoint =3D QString("/"); - result.append(mp); - #elif !defined(Q_OS_ANDROID) STRUCT_SETMNTENT mnttab; if ((mnttab =3D SETMNTENT(MNTTAB, "r")) =3D=3D nullptr) {