External/Aga.Controls/Tree/IToolTipProvider.cs
author moel.mich
Sun, 21 Jul 2013 21:02:55 +0000
changeset 415 a67db9051d19
permissions -rw-r--r--
Fixed an issue where the voltages, temperatures, fans and controls arrays could be null (instead of zero length) causing NullReferenceExceptions in SuperIOHardware.
     1 using System;
     2 using System.Collections.Generic;
     3 using System.Text;
     4 using Aga.Controls.Tree.NodeControls;
     5 
     6 namespace Aga.Controls.Tree
     7 {
     8 	public interface IToolTipProvider
     9 	{
    10 		string GetToolTip(TreeNodeAdv node, NodeControl nodeControl);
    11 	}
    12 }