#endif
#ifndef WXPRECOMP
-#include "wx/wx.h"
#endif
-
#include "wx/html/forcelnk.h"
#include "wx/html/m_templ.h"
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();
}
ParseInner(tag);
- if (m_WParser->GetContainer()->GetFirstCell() != NULL)
- {
+ if (m_WParser->GetContainer()->GetFirstCell() != NULL)
+ {
m_WParser->CloseContainer();
m_WParser->OpenContainer();
}
return TRUE;
}
-
- else if (tag.GetName() == wxT("DT"))
- {
- if (!tag.IsEnding())
- {
+ else if (tag.GetName() == wxT("DT"))
+ {
+ if (!tag.IsEnding())
+ {
m_WParser->CloseContainer();
c = m_WParser->OpenContainer();
c->SetAlignHor(wxHTML_ALIGN_LEFT);
}
return FALSE;
}
-
else if (!tag.IsEnding()) // "DD"
- {
+ {
m_WParser->CloseContainer();
c = m_WParser->OpenContainer();
c->SetIndent(5 * m_WParser->GetCharWidth(), wxHTML_INDENT_LEFT);
return FALSE;
}
-
+
else return FALSE;
}