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

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

@@ -130,9 +130,9 @@ public class SPF_GetGraphFunctionPositions extends SilentSapforPass {
int x = (int) (screenDims.getKey() * target.fgScreen);
int y = (int) (screenDims.getValue() * target.fgScreen);
Vector<String> visibleFuncNames = new Vector<>();
if (showByCurrentFunction && Current.HasFunction()) {
if (showByCurrentFunction && Global.mainModule.HasFunction()) {
Vector<String> rawVisible =
getNeighbors(Current.getFunction().funcName,
getNeighbors(Global.mainModule.getFunction().funcName,
depth,
showIn,
showOut);