Refactor YesNtWindowStatements to use constructor for ownerProcess

This commit is contained in:
Stone_Red
2026-06-12 16:53:10 +02:00
parent 61c0ceb7f8
commit 2f1563d374
2 changed files with 3 additions and 7 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ public class YesNtInterpreterProcess() : Process("YesNtInterpreter")
];
interpreter = new();
YesNtWindowStatements.Register(interpreter, this);
new YesNtWindowStatements(this).Register(interpreter);
interpreter.Prepare([.. args]);
}