[Mmclibrary-cvs] mmclibrary/MMCLib Component.cs,1.19,1.20
Brought to you by:
imjimmurphy,
kachalkov
From: Alexander K. <kac...@us...> - 2005-03-18 18:09:56
|
Update of /cvsroot/mmclibrary/mmclibrary/MMCLib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24513/MMCLib Modified Files: Component.cs Log Message: Index: Component.cs =================================================================== RCS file: /cvsroot/mmclibrary/mmclibrary/MMCLib/Component.cs,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** Component.cs 15 Mar 2005 06:16:55 -0000 1.19 --- Component.cs 18 Mar 2005 18:09:44 -0000 1.20 *************** *** 42,46 **** /// Toolbar buttons array /// </summary> ! protected MMCBUTTON[] m_ToolbarButtons; /// <summary> --- 42,46 ---- /// Toolbar buttons array /// </summary> ! protected static MMCBUTTON[] m_ToolbarButtons; /// <summary> *************** *** 52,56 **** /// Toolbar image index in the global collection /// </summary> ! protected int m_ToolbarImageIndex; //Added by Alexander Kachalkov --- 52,56 ---- /// Toolbar image index in the global collection /// </summary> ! protected static int m_ToolbarImageIndex; //Added by Alexander Kachalkov *************** *** 58,62 **** /// Get or Set Toolbar buttons /// </summary> ! public MMCBUTTON[] ToolbarButtons { get{return m_ToolbarButtons;} --- 58,62 ---- /// Get or Set Toolbar buttons /// </summary> ! public static MMCBUTTON[] ToolbarButtons { get{return m_ToolbarButtons;} *************** *** 68,72 **** /// Index of the Toolbar bitmap in the global Image list /// </summary> ! public int ToolbarImageIndex { get{return m_ToolbarImageIndex;} --- 68,72 ---- /// Index of the Toolbar bitmap in the global Image list /// </summary> ! public static int ToolbarImageIndex { get{return m_ToolbarImageIndex;} |