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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue