summaryrefslogtreecommitdiffstats
path: root/src/section.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-03-15 15:56:53 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-03-15 15:56:53 (GMT)
commit683ef76f7bf1ba929f9c263064bb5f6c8e377275 (patch)
treec59b05777be4d51f94a769dfc226e903278a20ee /src/section.h
parent9ead1e6b562dc91ecd0ef9c55e76d803740ded9b (diff)
downloadDoxygen-683ef76f7bf1ba929f9c263064bb5f6c8e377275.zip
Doxygen-683ef76f7bf1ba929f9c263064bb5f6c8e377275.tar.gz
Doxygen-683ef76f7bf1ba929f9c263064bb5f6c8e377275.tar.bz2
Fixed compiler warnings in section.h
Diffstat (limited to 'src/section.h')
-rw-r--r--src/section.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/section.h b/src/section.h
index 7df4166..a1f859e 100644
--- a/src/section.h
+++ b/src/section.h
@@ -35,9 +35,9 @@ struct SectionInfo
};
SectionInfo(const char *f,const int lin,const char *l,const char *t,
SectionType st,int lev,const char *r=0) :
- label(l), title(t), type(st), ref(r), definition(0),
- fileName(f), generated(FALSE), level(lev), lineNr(lin)
- {
+ label(l), title(t), type(st), ref(r), definition(0),
+ fileName(f), lineNr(lin), generated(FALSE), level(lev)
+ {
}
SectionInfo(const SectionInfo &s)
{
@@ -52,7 +52,7 @@ struct SectionInfo
level=s.level;
}
~SectionInfo() {}
- QCString label;
+ QCString label;
QCString title;
SectionType type;
QCString ref;