summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-02-08 20:52:00 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-02-08 20:52:00 (GMT)
commit46ffd77e8d3c15244732128caace858f2aa38d73 (patch)
tree695adf90f5ae02677a4b36b4e6128e94f1336d6d
parentf94c208ebb089a243a030a9feb363ab9da6488d2 (diff)
parentdbf445a3d25f6fe08b7720f3dc8bcab7735e43c7 (diff)
downloadDoxygen-46ffd77e8d3c15244732128caace858f2aa38d73.zip
Doxygen-46ffd77e8d3c15244732128caace858f2aa38d73.tar.gz
Doxygen-46ffd77e8d3c15244732128caace858f2aa38d73.tar.bz2
Merge branch 'master' of github.com:doxygen/doxygen
-rw-r--r--addon/doxywizard/inputstrlist.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/addon/doxywizard/inputstrlist.cpp b/addon/doxywizard/inputstrlist.cpp
index 9d0bd66..2f4c7f7 100644
--- a/addon/doxywizard/inputstrlist.cpp
+++ b/addon/doxywizard/inputstrlist.cpp
@@ -276,8 +276,8 @@ bool InputStrList::isDefault()
if (it1==m_strList.end() && it2==m_default.end()) return true;
// one list is empty but the other is not
- if (it1==m_default.end()) return false;
- if (it2==m_strList.end()) return false;
+ if (it1==m_strList.end()) return false;
+ if (it2==m_default.end()) return false;
it1 = m_strList.begin();
it2 = m_default.begin();