mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
ide: Find in files now ignores .svn folders
git-svn-id: svn://ultimatepp.org/upp/trunk@467 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
ac654639eb
commit
242c12a938
3 changed files with 4 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
|||
#include "ide.h"
|
||||
|
||||
#define LDUMP(x) //DUMP(x)
|
||||
#define LDUMP(x) //DDUMP(x)
|
||||
#define LDUMPC(x) //DUMPC(x)
|
||||
#define LLOG(x) //DLOG(x)
|
||||
|
||||
|
|
@ -189,7 +189,7 @@ void AssistEditor::TypeOf(const String& id, Vector<String>& r, bool& code)
|
|||
String dummy;
|
||||
if(q >= 0 && NestId(BrowserBase()[q], id, r, code, dummy))
|
||||
return;
|
||||
q = BrowserBase().Find("::"); // Better namespace support needed !!!
|
||||
q = BrowserBase().Find("::");
|
||||
if(q >= 0)
|
||||
NestId(BrowserBase()[q], id, r, code, dummy);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ void Ide::SerializeFindInFiles(Stream& s) {
|
|||
void SearchForFiles(Vector<String>& files, String dir, String mask, Progress& pi) {
|
||||
FindFile ff(AppendFileName(dir, "*.*"));
|
||||
while(ff) {
|
||||
if(ff.IsFolder())
|
||||
if(ff.IsFolder() && *ff.GetName() != '.')
|
||||
SearchForFiles(files, AppendFileName(dir, ff.GetName()), mask, pi);
|
||||
else
|
||||
if(ff.IsFile() && PatternMatchMulti(mask, ff.GetName())) {
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
#define IDE_VERSION "809.r140"
|
||||
#define IDE_VERSION "809.r145"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue