summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-02-08 11:02:10 (GMT)
committerGitHub <noreply@github.com>2021-02-08 11:02:10 (GMT)
commitdbf445a3d25f6fe08b7720f3dc8bcab7735e43c7 (patch)
tree3ebbe15e003431ada2fe4467c2739ed0fe17528d
parent5563447069c5b047a87d319b46fcfc23a88b03f9 (diff)
parentb3152b3c7d7393da12cd0f8fec7ade2606d51ed5 (diff)
downloadDoxygen-dbf445a3d25f6fe08b7720f3dc8bcab7735e43c7.zip
Doxygen-dbf445a3d25f6fe08b7720f3dc8bcab7735e43c7.tar.gz
Doxygen-dbf445a3d25f6fe08b7720f3dc8bcab7735e43c7.tar.bz2
Merge pull request #8346 from albert-github/feature/bug_doxyw_strlist
Non default value not shown properly in doxywizard
-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();