From 2abd54b0adc0b82bd5728d6c51305932df853144 Mon Sep 17 00:00:00 2001 From: mattias Date: Wed, 3 Jul 2013 17:20:58 +0000 Subject: [PATCH] IDE: improve message unit not found git-svn-id: trunk@41985 - --- ide/msgquickfixes.pas | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ide/msgquickfixes.pas b/ide/msgquickfixes.pas index e70994bb6f..83b28dab87 100644 --- a/ide/msgquickfixes.pas +++ b/ide/msgquickfixes.pas @@ -590,9 +590,8 @@ begin if (UsedByOwner is TIDEPackage) and (CompareTextCT(TIDEPackage(UsedByOwner).Name,PkgName)=0) then begin - // unit of package is not found by a unit of package - s+='. Check search path of package '+TIDEPackage(UsedByOwner).Name - +' and unit cycles.'; + // two units of a package can not find each other + s+='. Check search path package '+TIDEPackage(UsedByOwner).Name+', try a clean rebuild, check implementation uses sections.'; end else begin if PkgName<>'' then s+='. Check if package '+PkgName+' is in the dependencies';