diff options
author | albert-github <albert.tests@gmail.com> | 2020-12-14 12:26:47 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2020-12-14 12:26:47 (GMT) |
commit | 99583eeb36711c2ed4261488c2157da0d425fa67 (patch) | |
tree | 541f8147af98240168f88631bc79717c3550e13f /addon | |
parent | 5927aea269d6567c850c6ddc87970779aca5bc32 (diff) | |
download | Doxygen-99583eeb36711c2ed4261488c2157da0d425fa67.zip Doxygen-99583eeb36711c2ed4261488c2157da0d425fa67.tar.gz Doxygen-99583eeb36711c2ed4261488c2157da0d425fa67.tar.bz2 |
Incorrect end tag in doxywizard
The closing `</qt` was not properly closed to `</qt>`.
Diffstat (limited to 'addon')
-rw-r--r-- | addon/doxywizard/inputbool.cpp | 2 | ||||
-rw-r--r-- | addon/doxywizard/inputint.cpp | 2 | ||||
-rw-r--r-- | addon/doxywizard/inputstring.cpp | 2 | ||||
-rw-r--r-- | addon/doxywizard/inputstrlist.cpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/addon/doxywizard/inputbool.cpp b/addon/doxywizard/inputbool.cpp index 65e1d26..92d2929 100644 --- a/addon/doxywizard/inputbool.cpp +++ b/addon/doxywizard/inputbool.cpp @@ -75,7 +75,7 @@ void InputBool::updateDefault() { if (m_state==m_default || !m_lab->isEnabled()) { - m_lab->setText(QString::fromLatin1("<qt>")+m_id+QString::fromLatin1("</qt")); + m_lab->setText(QString::fromLatin1("<qt>")+m_id+QString::fromLatin1("</qt>")); } else { diff --git a/addon/doxywizard/inputint.cpp b/addon/doxywizard/inputint.cpp index d97f1b0..de01862 100644 --- a/addon/doxywizard/inputint.cpp +++ b/addon/doxywizard/inputint.cpp @@ -75,7 +75,7 @@ void InputInt::updateDefault() { if (m_val==m_default || !m_lab->isEnabled()) { - m_lab->setText(QString::fromLatin1("<qt>")+m_id+QString::fromLatin1("</qt")); + m_lab->setText(QString::fromLatin1("<qt>")+m_id+QString::fromLatin1("</qt>")); } else { diff --git a/addon/doxywizard/inputstring.cpp b/addon/doxywizard/inputstring.cpp index e7a2b5b..5324085 100644 --- a/addon/doxywizard/inputstring.cpp +++ b/addon/doxywizard/inputstring.cpp @@ -130,7 +130,7 @@ void InputString::updateDefault() { if (m_str==m_default || !m_lab->isEnabled()) { - m_lab->setText(QString::fromLatin1("<qt>")+m_id+QString::fromLatin1("</qt")); + m_lab->setText(QString::fromLatin1("<qt>")+m_id+QString::fromLatin1("</qt>")); } else { diff --git a/addon/doxywizard/inputstrlist.cpp b/addon/doxywizard/inputstrlist.cpp index f92f3fe..fae45b5 100644 --- a/addon/doxywizard/inputstrlist.cpp +++ b/addon/doxywizard/inputstrlist.cpp @@ -230,7 +230,7 @@ void InputStrList::updateDefault() { if (isDefault() || !m_lab->isEnabled()) { - m_lab->setText(QString::fromLatin1("<qt>")+m_id+QString::fromLatin1("</qt")); + m_lab->setText(QString::fromLatin1("<qt>")+m_id+QString::fromLatin1("</qt>")); } else { |