X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4f9297b0eead20a0bfee71df18e0d8f0cbc402fb..2e7b0a1617dbdada26531371627a1cd8a72e9149:/src/html/m_dflist.cpp?ds=sidebyside diff --git a/src/html/m_dflist.cpp b/src/html/m_dflist.cpp index 28c34616c9..634a31786b 100644 --- a/src/html/m_dflist.cpp +++ b/src/html/m_dflist.cpp @@ -22,10 +22,8 @@ #endif #ifndef WXPRECOMP -#include "wx/wx.h" #endif - #include "wx/html/forcelnk.h" #include "wx/html/m_templ.h" @@ -43,10 +41,10 @@ TAG_HANDLER_BEGIN(DEFLIST, "DL,DT,DD") wxHtmlContainerCell *c; - if (tag.GetName() == wxT("DL")) - { - if (m_WParser->GetContainer()->GetFirstCell() != NULL) - { + if (tag.GetName() == wxT("DL")) + { + if (m_WParser->GetContainer()->GetFirstCell() != NULL) + { m_WParser->CloseContainer(); m_WParser->OpenContainer(); } @@ -54,8 +52,8 @@ TAG_HANDLER_BEGIN(DEFLIST, "DL,DT,DD") ParseInner(tag); - if (m_WParser->GetContainer()->GetFirstCell() != NULL) - { + if (m_WParser->GetContainer()->GetFirstCell() != NULL) + { m_WParser->CloseContainer(); m_WParser->OpenContainer(); } @@ -63,28 +61,21 @@ TAG_HANDLER_BEGIN(DEFLIST, "DL,DT,DD") return TRUE; } - - else if (tag.GetName() == wxT("DT")) - { - if (!tag.IsEnding()) - { - m_WParser->CloseContainer(); - c = m_WParser->OpenContainer(); - c->SetAlignHor(wxHTML_ALIGN_LEFT); - c->SetMinHeight(m_WParser->GetCharHeight()); - } + else if (tag.GetName() == wxT("DT")) + { + m_WParser->CloseContainer(); + c = m_WParser->OpenContainer(); + c->SetAlignHor(wxHTML_ALIGN_LEFT); + c->SetMinHeight(m_WParser->GetCharHeight()); return FALSE; } - - else if (!tag.IsEnding()) // "DD" - { + else // "DD" + { m_WParser->CloseContainer(); c = m_WParser->OpenContainer(); c->SetIndent(5 * m_WParser->GetCharWidth(), wxHTML_INDENT_LEFT); return FALSE; } - - else return FALSE; } TAG_HANDLER_END(DEFLIST)