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

Reply via email to