uppsrc: Removed legacy .iml support, fixed clang warnings

git-svn-id: svn://ultimatepp.org/upp/trunk@13522 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2019-08-03 13:29:03 +00:00
parent 1bd6b2c6f3
commit f8760ec1a2
7 changed files with 6 additions and 49 deletions

View file

@ -50,11 +50,12 @@ PatchDiff::PatchDiff()
return;
String h = patch.GetPatchedFile(i);
String p = patch.GetPath(i);
if(!h.IsVoid())
if(!h.IsVoid()) {
if(IsNull(h))
FileDelete(p);
else
SaveFile(p, h);
}
}
Break(IDOK);
};