рефакторинг. переносил текущие объекты в другое место

This commit is contained in:
2024-10-13 22:08:13 +03:00
parent 09b64218bd
commit 6afa2dc892
240 changed files with 1472 additions and 1518 deletions

View File

@@ -80,14 +80,14 @@ public class SPF_GetGCovInfo extends SilentSapforPass {
}
@Override
protected void showDone() throws Exception {
if (Current.HasFile())
Current.getFile().form.ShowGCOV();
if (Global.mainModule.HasFile())
Global.mainModule.getFile().form.ShowGCOV();
for (PassControl control: controls)
control.setIcon(getDoneIconPath());
}
@Override
protected void FocusResult() {
if (Current.HasFile())
Current.getFile().form.FocusGCOVLog();
if (Global.mainModule.HasFile())
Global.mainModule.getFile().form.FocusGCOVLog();
}
}