SelectPkg.diff
ide/SelectPkg.cpp (kopia robocza) | ||
---|---|---|
298 | 298 |
next = base.Get(c - 1); |
299 | 299 |
String vars = base.Get(0); |
300 | 300 |
String varpath = VarFilePath(vars); |
301 |
if(PromptOKCancel(NFormat("Remove base file [* \1%s\1]?", varpath)) && !FileDelete(varpath)) |
|
302 |
Exclamation(NFormat("Error deleting file [* \1%s\1].", varpath)); |
|
303 |
SyncBase(next); |
|
301 |
if(PromptOKCancel(NFormat("Remove base file [* \1%s\1]?", varpath))) |
|
302 |
if(!FileDelete(varpath)) |
|
303 |
Exclamation(NFormat("Error deleting file [* \1%s\1].", varpath)); |
|
304 |
else |
|
305 |
SyncBase(next); |
|
304 | 306 |
} |
305 | 307 | |
306 | 308 |
int DirSep(int c) |