mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-16 03:40:36 +01:00
LCL: fixed spelling mistake
git-svn-id: trunk@13948 -
This commit is contained in:
parent
b6ee99a887
commit
39e95dbd32
@ -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;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user