From cc470b33fe13a8cfb0fe41a1bd91598f94fd753c Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Mon, 27 Aug 2007 18:36:26 +0000 Subject: [PATCH] Fix previous revision: The compiler complains about declaring properties after functions and procedures. --- source/childwin.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/childwin.pas b/source/childwin.pas index 55095a50..7fbc9f86 100644 --- a/source/childwin.pas +++ b/source/childwin.pas @@ -546,7 +546,6 @@ type VTRowDataListCommandStats, VTRowDataListTables, VTRowDataListColumns : TVTreeDataArray; - function GetVTreeDataArray( VT: TBaseVirtualTree ): TVTreeDataArray; FProgressForm : TFrmQueryProgress; procedure Init(AConn : POpenConnProf; AMysqlConn : TMysqlConn); @@ -567,6 +566,7 @@ type procedure ClearAllTableLists; procedure UpdateTreeTableList; procedure EnsureActiveDatabase; + function GetVTreeDataArray( VT: TBaseVirtualTree ): TVTreeDataArray; end;