Added Show "Renaming identifiers" status on file opening with auto rename identifiers on

This commit is contained in:
Jindra Petřík
2023-09-28 18:51:59 +02:00
parent 085156d8a5
commit dae1fe0e8c
7 changed files with 74 additions and 40 deletions

View File

@@ -4362,6 +4362,10 @@ public class CommandLineArgumentParser {
public void progress(int p) {
//...
}
@Override
public void status(String status) {
}
}, Configuration.parallelSpeedUp.get(), charset);
return swf;
}
@@ -4395,6 +4399,10 @@ public class CommandLineArgumentParser {
public void progress(int p) {
//startWork(AppStrings.translate("work.reading.swf"), p, worker);
}
@Override
public void status(String status) {
}
}, Configuration.parallelSpeedUp.get(), charset);
return swf;
}