ideintf: don't try to show empty hints

git-svn-id: trunk@22190 -
This commit is contained in:
paul 2009-10-15 08:57:41 +00:00
parent e2e83d6c1e
commit b8cedf56c9

View File

@ -3031,7 +3031,8 @@ begin
HintType := GetHintTypeAt(Index,Position.X);
if (HintType = pehName) and Assigned(OnPropertyHint) then
begin
if OnPropertyHint(Self, PointedRow, Position, FHintWindow, Rect, AHint) then
if OnPropertyHint(Self, PointedRow, Position, FHintWindow, Rect, AHint) and
(AHint <> '') then
begin
FHintIndex := Index;
FShowingLongHint := True;