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
050fce2b
Commit
050fce2b
authored
Dec 17, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 741417 - Crash when building gtkmm documentation
parent
2716fc48
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
qcstring.cpp
qtools/qcstring.cpp
+2
-2
doxygen.cpp
src/doxygen.cpp
+1
-0
No files found.
qtools/qcstring.cpp
View file @
050fce2b
...
...
@@ -247,9 +247,9 @@ QCString QCString::right( uint len ) const
QCString
QCString
::
mid
(
uint
index
,
uint
len
)
const
{
int
slen
=
length
();
uint
slen
=
(
uint
)
length
();
if
(
len
==
0xffffffff
)
len
=
slen
-
index
;
if
(
isEmpty
()
||
(
int
)
index
>=
slen
||
len
==
0
)
if
(
isEmpty
()
||
index
>=
slen
||
len
==
0
)
{
return
QCString
();
}
...
...
src/doxygen.cpp
View file @
050fce2b
...
...
@@ -1010,6 +1010,7 @@ static Definition *buildScopeFromQualifiedName(const QCString name,
while
(
i
<
level
)
{
int
idx
=
getScopeFragment
(
name
,
p
,
&
l
);
if
(
idx
==-
1
)
return
prevScope
;
QCString
nsName
=
name
.
mid
(
idx
,
l
);
if
(
nsName
.
isEmpty
())
return
prevScope
;
if
(
!
fullScope
.
isEmpty
())
fullScope
+=
"::"
;
...
...
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