From a45a2040843a914bd9a31d05292fb1062fb01c1b Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Thu, 20 Jan 2022 16:44:12 +0100 Subject: [PATCH] Zooflow: fix doucmentresultlist types --- GUIs.ZooFlow/Search/frmFlowSearch.vb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/GUIs.ZooFlow/Search/frmFlowSearch.vb b/GUIs.ZooFlow/Search/frmFlowSearch.vb index 65334d70..c92c2449 100644 --- a/GUIs.ZooFlow/Search/frmFlowSearch.vb +++ b/GUIs.ZooFlow/Search/frmFlowSearch.vb @@ -230,10 +230,10 @@ Public Class frmFlowSearch Dim oWindowGuid = $"FLOWSEARCH-{My.User.Name}" Dim oParams = New DocumentResultList.Params() With { .WindowGuid = oWindowGuid, - .Results = New List(Of DocumentResultList) From { - New DocumentResultList() With { + .Results = New List(Of DocumentResultList.DocumentResult) From { + New DocumentResultList.DocumentResult() With { .Title = "FlowSearchResult", - .DataTable = pDTRESULT + .Datatable = pDTRESULT } } }