From 2dc4fca5536d08ab19d71ee666a05a588604cc8e Mon Sep 17 00:00:00 2001 From: Michael Krisper <michael.krisper@tugraz.at> Date: Mon, 30 Aug 2021 17:42:29 +0200 Subject: [PATCH] corrected error with AddRuns returning integers now --- VECTO/GUI/MainForm.vb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VECTO/GUI/MainForm.vb b/VECTO/GUI/MainForm.vb index 57b05e87a4..2f65c78445 100644 --- a/VECTO/GUI/MainForm.vb +++ b/VECTO/GUI/MainForm.vb @@ -1031,8 +1031,8 @@ Imports TUGraz.VectoCore.Utils runsFactory.ActualModalData = cbActVmod.Checked runsFactory.SerializeVectoRunData = cbSaveVectoRunData.Checked - For Each run As IVectoRun In jobContainer.AddRuns(runsFactory) - fileWriters.Add(run.RunIdentifier, fileWriter) + For Each run as integer In jobContainer.AddRuns(runsFactory) + fileWriters.Add(run, fileWriter) Next ' TODO MQ-20200525: Remove the following loop in production (or after evaluation of LAC!! -- GitLab