SeparatorFix.diff

Zbigniew Rebacz, 04/20/2016 09:14 PM

Download (642 Bytes)

View differences:

FindInFiles.cpp (kopia robocza)
209 209
			String packname = wspc[p];
210 210
			const Package& pack = wspc.GetPackage(p);
211 211
			for(int f = 0; f < pack.file.GetCount(); f++) {
212
				String fn = pack.file[f];
213
				if(ToUpper(packname).Find(mask) >= 0 || ToUpper(fn).Find(mask) >= 0)
212
				const Package::File& file = pack.file[f];
213
				if(file.separator)
214
					continue;
215
				
216
				if(ToUpper(packname).Find(mask) >= 0 || ToUpper(file).Find(mask) >= 0)
214 217
					ffdlg.list.Add(packname, pack.file[f]);
215 218
			}
216 219
		}