[Mmclibrary-cvs] mmclibrary/MMCLib2/Nodes BaseNode.cs,1.29,1.30
Brought to you by:
imjimmurphy,
kachalkov
From: Lesley v. Z. <ex...@us...> - 2005-03-02 13:28:23
|
Update of /cvsroot/mmclibrary/mmclibrary/MMCLib2/Nodes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8736 Modified Files: BaseNode.cs Log Message: https://sourceforge.net/forum/message.php?msg_id=3008415 Index: BaseNode.cs =================================================================== RCS file: /cvsroot/mmclibrary/mmclibrary/MMCLib2/Nodes/BaseNode.cs,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** BaseNode.cs 19 Jan 2005 22:58:40 -0000 1.29 --- BaseNode.cs 2 Mar 2005 13:28:11 -0000 1.30 *************** *** 50,54 **** private OnUserDelegate _updateHandle = null; - /// <summary> /// Back reference to the snapin --- 50,53 ---- *************** *** 945,949 **** /// to display data items in the result pane. This function /// is used to get data both for a column view and a list view. ! /// TBD: trim down for basic list view only - reporting stuff is in reportnode /// </summary> /// <param name="ResultDataItem"></param> --- 944,948 ---- /// to display data items in the result pane. This function /// is used to get data both for a column view and a list view. ! /// #TODO: trim down for basic list view only - reporting stuff is in reportnode /// </summary> /// <param name="ResultDataItem"></param> *************** *** 1996,2004 **** // Now add all the children images foreach(BaseNode node in this.Children) ! node.OnAddResultPaneImages(il); _events.Fire(OnAddResultPaneImagesKey, this, new AddImagesArgs(il)); } protected virtual int GetResultViewImageIndex() { --- 1995,2010 ---- // Now add all the children images foreach(BaseNode node in this.Children) ! AddResultPaneChildrenImages(il); _events.Fire(OnAddResultPaneImagesKey, this, new AddImagesArgs(il)); } + // Added thanks to Oleg - kojevnikov + private void AddResultPaneChildrenImages(IImageList il) + { + if (ResultPaneImages != null) + ResultPaneImages.LoadImageList(il, m_iCookie); + } + protected virtual int GetResultViewImageIndex() { |