[Mmclibrary-cvs] mmclibrary/MMCLib2/Nodes BaseNode.cs,1.28,1.29
Brought to you by:
imjimmurphy,
kachalkov
From: Lesley v. Z. <ex...@us...> - 2005-01-19 22:58:51
|
Update of /cvsroot/mmclibrary/mmclibrary/MMCLib2/Nodes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3362 Modified Files: BaseNode.cs Log Message: Changed a lot of protected variables that where storage for properties to private Added i18n support moved 'ShowModalPropertyPages' to PropertyPageSettings.cs Method parameter names should use a camel case for their names Index: BaseNode.cs =================================================================== RCS file: /cvsroot/mmclibrary/mmclibrary/MMCLib2/Nodes/BaseNode.cs,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** BaseNode.cs 5 Dec 2004 15:47:16 -0000 1.28 --- BaseNode.cs 19 Jan 2005 22:58:40 -0000 1.29 *************** *** 7,11 **** using System.Runtime.InteropServices; using System.Threading; - using Ironring.MMC.Core; using Ironring.MMC.Nodes.NodeEvents; --- 7,10 ---- *************** *** 22,111 **** /////////////////////////////////////////////////////////////////////// // [...2196 lines suppressed...] } --- 2085,2090 ---- public void RemovePropertySheet( ) { ! if( this._propSheet != null && !_propSheet.isClosed ) ! _propSheet.Invoke( _propSheet.CloseHandle, new object[]{ string.Empty, this } ); } *************** *** 2224,2227 **** ! } } --- 2121,2124 ---- ! } } |