LCL: fixed spelling mistake

git-svn-id: trunk@13948 -
This commit is contained in:
mattias 2008-02-02 09:21:28 +00:00
parent b6ee99a887
commit 39e95dbd32

View File

@ -89,9 +89,9 @@ implementation
const
// number of cache changes that can happen w/o rebuild
{$IFDEF VerboseImageListCache}
ImageListCacheRebuildThreashold = 1;
ImageListCacheRebuildThreshold = 1;
{$ELSE}
ImageListCacheRebuildThreashold = 20;
ImageListCacheRebuildThreshold = 20;
{$ENDIF}
var
@ -109,7 +109,7 @@ end;
procedure TImageListCache.CheckRebuildNeed;
begin
if (FObsoletedCount >= ImageListCacheRebuildThreashold) and not Application.Terminated then
if (FObsoletedCount >= ImageListCacheRebuildThreshold) and not Application.Terminated then
Rebuild;
end;