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
27224b65
Commit
27224b65
authored
Jul 17, 2000
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes compile bug on Windows
parent
55571c29
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
filedef.h
src/filedef.h
+2
-2
util.cpp
src/util.cpp
+1
-1
No files found.
src/filedef.h
View file @
27224b65
...
...
@@ -209,7 +209,7 @@ class FileList : public QList<FileDef>
{
FileDef
*
md1
=
(
FileDef
*
)
item1
;
FileDef
*
md2
=
(
FileDef
*
)
item2
;
return
str
case
cmp
(
md1
->
name
(),
md2
->
name
());
return
str
i
cmp
(
md1
->
name
(),
md2
->
name
());
}
private
:
QCString
m_pathName
;
...
...
@@ -224,7 +224,7 @@ class OutputNameList : public QList<FileList>
{
FileList
*
fl1
=
(
FileList
*
)
item1
;
FileList
*
fl2
=
(
FileList
*
)
item2
;
return
str
case
cmp
(
fl1
->
path
(),
fl2
->
path
());
return
str
i
cmp
(
fl1
->
path
(),
fl2
->
path
());
}
};
...
...
src/util.cpp
View file @
27224b65
...
...
@@ -78,7 +78,7 @@ int iSystem(const char *command)
}
}
#else
system
(
command
);
return
system
(
command
);
#endif
}
...
...
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