D15180: kioexecd: watch for creations or modifications of the temporary files
Anthony Fieroni
noreply at phabricator.kde.org
Mon Sep 3 14:14:18 BST 2018
anthonyfieroni added inline comments.
INLINE COMMENTS
> kioexecd.cpp:134
> + QDir(parentDir).removeRecursively();
> + it=m_deleted.erase(it);
> + }
Also for loop should looks like:
for (it = begin(); it != end();) {
if () {
it = erase(it);
} else {
++it;
}
}
REPOSITORY
R241 KIO
REVISION DETAIL
https://phabricator.kde.org/D15180
To: jtamate, #frameworks, broulik, ngraham, dfaure, elvisangelaccio
Cc: anthonyfieroni, elvisangelaccio, kde-frameworks-devel, michaelh, ngraham, bruns
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.kde.org/pipermail/kde-frameworks-devel/attachments/20180903/ae84d239/attachment.html>
More information about the Kde-frameworks-devel
mailing list