Update of /cvsroot/gexperts/gexperts/unstable/Src
In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv18760/Src
Modified Files:
GX_ProcedureList.pas
Log Message:
Don't filter on the class name when a class filter is explicit in the combo/dropdown
Index: GX_ProcedureList.pas
===================================================================
RCS file: /cvsroot/gexperts/gexperts/unstable/Src/GX_ProcedureList.pas,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -d -r1.70 -r1.71
--- GX_ProcedureList.pas 5 Jul 2006 13:54:30 -0000 1.70
+++ GX_ProcedureList.pas 22 Sep 2006 02:09:32 -0000 1.71
@@ -278,7 +278,7 @@
AddListItem(ProcInfo)
else if FOptions.SearchAll and StrContains(edtMethods.Text, ProcInfo.ProcName, False) then
AddListItem(ProcInfo)
- else if FOptions.SearchAll and FOptions.SearchClassName and StrContains(edtMethods.Text, ProcInfo.ProcClass, False) then
+ else if FOptions.SearchAll and FOptions.SearchClassName and SameText(cbxObjects.Text, SAllString) and StrContains(edtMethods.Text, ProcInfo.ProcClass, False) then
AddListItem(ProcInfo);
end;
if lvProcs.Items.Count = 0 then
|