From 43052b92634870884cfa77c87ee1293acad6e9ea Mon Sep 17 00:00:00 2001 From: Raymond Date: Thu, 24 Dec 2009 17:38:16 +0000 Subject: [PATCH] Committing for the sake of committing. git-svn-id: http://www.villavu.com/repositories/merlijn/mufasa@332 3f818213-9676-44b0-a9b4-5e4c4e03d09d --- Projects/SAMufasaGUI/testunit.pas | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Projects/SAMufasaGUI/testunit.pas b/Projects/SAMufasaGUI/testunit.pas index 68db4ff..c755d14 100644 --- a/Projects/SAMufasaGUI/testunit.pas +++ b/Projects/SAMufasaGUI/testunit.pas @@ -1156,6 +1156,7 @@ var i : integer; Index : integer; TempNode : TTreeNode; + Temp2Node : TTreeNode; Tree : TTreeView; begin Methods := TMMLPSThread.GetExportedMethods; @@ -1177,7 +1178,8 @@ begin Sections.Add(LastSection); end; end; - Tree.Items.AddChild(Tempnode,GetMethodName(Methods[i].FuncDecl,false)).data := strnew(PChar(GetMethodName(Methods[i].FuncDecl,true))); + Temp2Node := Tree.Items.AddChild(Tempnode,GetMethodName(Methods[i].FuncDecl,false)); + Temp2Node.Data:= strnew(PChar(GetMethodName(Methods[i].FuncDecl,true))); end; end;