Microsoft.VisualStudio.Project.ProjectNode.UpdateSccStateIcons C# (CSharp) Method

UpdateSccStateIcons() protected method

Recursevily walks the hierarchy nodes and redraws the state icons
protected UpdateSccStateIcons ( ) : void
return void
        protected internal override void UpdateSccStateIcons()
        {
            if (this.FirstChild == null)
            {
                return;
            }

            for (HierarchyNode n = this.FirstChild; n != null; n = n.NextSibling)
            {
                n.UpdateSccStateIcons();
            }
        }
ProjectNode