mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
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:
parent
e654ea022a
commit
be3bb0287d
3 changed files with 6 additions and 5 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 << ";";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue