ide: cpp: layouts now not listing dv___ members #1260

git-svn-id: svn://ultimatepp.org/upp/trunk@8912 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2015-09-09 22:19:13 +00:00
parent e654ea022a
commit be3bb0287d
3 changed files with 6 additions and 5 deletions

View file

@ -363,7 +363,7 @@ bool AssistEditor::IncludeAssist()
dir.Cat(p.GetChar());
if(dir.GetCount() && (p.Char('/') || p.Char('\\'))) {
if(include_path.GetCount())
include_path << '/';
include_path << '/';
include_path << dir;
}
else

View file

@ -53,10 +53,11 @@ String PreprocessLayFile(const char *fn)
p.PassChar('(');
if(p.IsId()) {
String type = p.ReadIdt();
if(strncmp(type, "dv___", 5)) {
p.PassChar(',');
String name = p.ReadId();
if(!name.StartsWith("dv___")) {
r << '\t' << type;
p.PassChar(',');
r << ' ' << p.ReadId() << ";";
r << ' ' << name << ";";
}
}
}

View file

@ -13,7 +13,7 @@ void TargetMode::Serialize(Stream& s)
s % target_override % target;
if(ver < 3) {
int dummy;
s % dummy;
s % dummy;
}
if(ver < 1) {
String dummy;