fix #38692 (unable to remove maildir folders with umlauts):
@@ -762,9 +762,9 @@ int KMFolderMaildir::removeContents()
{
// it would be nice if QDir could delete recursively.. but since it
// doesn't, we have to do this hack
- QString cmd;
+ QCString cmd;
cmd.sprintf("rm -rf '%s'", QFile::encodeName(location()).data());
- system(cmd.ascii());
+ system(cmd.data());
return 0;
}
svn path=/trunk/kdenetwork/kmail/; revision=141877
wilder-work
parent
c01cb92257
commit
f418b39b57
1 changed files with 2 additions and 2 deletions
Loading…
Reference in new issue