Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
196f3951
Commit
196f3951
authored
Jan 06, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More context changes
parent
5af2b7c0
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
177 additions
and
32 deletions
+177
-32
context.cpp
src/context.cpp
+172
-29
context.h
src/context.h
+4
-2
ftvhelp.cpp
src/ftvhelp.cpp
+1
-1
No files found.
src/context.cpp
View file @
196f3951
This diff is collapsed.
Click to expand it.
src/context.h
View file @
196f3951
...
...
@@ -366,8 +366,10 @@ class ClassHierarchyContext : public TemplateStructIntf
class
NestingNodeContext
:
public
TemplateStructIntf
{
public
:
NestingNodeContext
(
Definition
*
,
bool
addClasses
);
NestingNodeContext
(
const
NestingNodeContext
*
parent
,
Definition
*
,
int
index
,
int
level
,
bool
addClasses
);
~
NestingNodeContext
();
QCString
id
()
const
;
// TemplateStructIntf methods
virtual
TemplateVariant
get
(
const
char
*
name
)
const
;
...
...
@@ -382,7 +384,7 @@ class NestingNodeContext : public TemplateStructIntf
class
NestingContext
:
public
TemplateListIntf
{
public
:
NestingContext
();
NestingContext
(
const
NestingNodeContext
*
parent
,
int
level
);
~
NestingContext
();
// TemplateListIntf
...
...
src/ftvhelp.cpp
View file @
196f3951
...
...
@@ -784,7 +784,7 @@ QCString FTVHelp::generateIndentLabel(FTVNode *n,int level)
{
result
=
generateIndentLabel
(
n
->
parent
,
level
+
1
);
}
result
+=
QCString
().
s
printf
(
"%d_"
,
n
->
index
)
;
result
+=
QCString
().
s
etNum
(
n
->
index
)
+
"_"
;
return
result
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment