diff options
author | albert-github <albert.tests@gmail.com> | 2018-10-04 13:46:33 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-10-04 13:46:33 (GMT) |
commit | 406b442fc3d0360e387324ff1c08251d86a1d035 (patch) | |
tree | b05963de2903449fac5fcceaca48a0435917963f /addon | |
parent | 58d4ad3cd25569f09b31c4b80bc145477c6d61cb (diff) | |
download | Doxygen-406b442fc3d0360e387324ff1c08251d86a1d035.zip Doxygen-406b442fc3d0360e387324ff1c08251d86a1d035.tar.gz Doxygen-406b442fc3d0360e387324ff1c08251d86a1d035.tar.bz2 |
Bug 702265 - Generated Doxyfile differs from result of doxygen -u
Syntax correction (Mac)
Diffstat (limited to 'addon')
-rw-r--r-- | addon/doxywizard/input.h | 2 | ||||
-rw-r--r-- | addon/doxywizard/inputstrlist.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/addon/doxywizard/input.h b/addon/doxywizard/input.h index b2618e9..5d86cc8 100644 --- a/addon/doxywizard/input.h +++ b/addon/doxywizard/input.h @@ -30,7 +30,7 @@ class Input virtual void reset() = 0; virtual void writeValue(QTextStream &t,QTextCodec *codec) = 0; virtual void setTemplateDocs(const QString &docs) = 0; - virtual bool isEmpty() { return FALSE; }; + virtual bool isEmpty() { return false; }; }; diff --git a/addon/doxywizard/inputstrlist.cpp b/addon/doxywizard/inputstrlist.cpp index 1d81436..822bc4c 100644 --- a/addon/doxywizard/inputstrlist.cpp +++ b/addon/doxywizard/inputstrlist.cpp @@ -264,7 +264,7 @@ bool InputStrList::isEmpty() { foreach (QString s, m_strList) { - if (!s.isEmpty()) return FALSE; + if (!s.isEmpty()) return false; } - return TRUE; + return true; } |