diff options
-rw-r--r-- | addon/doxywizard/inputstrlist.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addon/doxywizard/inputstrlist.cpp b/addon/doxywizard/inputstrlist.cpp index cdc7d14..591ba3a 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(); |