mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-01 07:41:49 +02:00
* fix filtering
git-svn-id: trunk@5766 -
This commit is contained in:
parent
36d54c027d
commit
19b4964df3
@ -363,11 +363,11 @@ Var
|
||||
|
||||
begin
|
||||
S:='';
|
||||
If (FCPU<>'') and (FCPU<>'0') then
|
||||
If (FCPU<>'') and (GetCPUName(FCPU)<>'All') then
|
||||
S:=S+' AND (TU_CPU_FK='+FCPU+')';
|
||||
If (FVersion<>'') and (FVersion<>'0') then
|
||||
If (FVersion<>'') and (GetVersionName(FVersion)<>'All') then
|
||||
S:=S+' AND (TU_VERSION_FK='+FVERSION+')';
|
||||
if (FOS<>'') and (FOS<>'0') then
|
||||
if (FOS<>'') and (GetOSName(FOS)<>'All') then
|
||||
S:=S+' AND (TU_OS_FK='+FOS+')';
|
||||
If (Round(FDate)<>0) then
|
||||
S:=S+' AND (TU_DATE>="'+FormatDateTime('YYYY/MM/DD',FDate)+'")'
|
||||
|
Loading…
Reference in New Issue
Block a user