X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2b5f62a0b2db198609b45dec622a018dae37008e..85f138db83939ce7c59a942aaecca7fa98168db3:/src/html/m_dflist.cpp diff --git a/src/html/m_dflist.cpp b/src/html/m_dflist.cpp index e113412e7a..80566085d7 100644 --- a/src/html/m_dflist.cpp +++ b/src/html/m_dflist.cpp @@ -4,10 +4,10 @@ // Author: Vaclav Slavik // RCS-ID: $Id$ // Copyright: (c) 1999 Vaclav Slavik -// Licence: wxWindows Licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation #endif @@ -36,6 +36,8 @@ FORCE_LINK_ME(m_dflist) TAG_HANDLER_BEGIN(DEFLIST, "DL,DT,DD" ) + TAG_HANDLER_CONSTR(DEFLIST) { } + TAG_HANDLER_PROC(tag) { wxHtmlContainerCell *c; @@ -43,7 +45,7 @@ TAG_HANDLER_BEGIN(DEFLIST, "DL,DT,DD" ) if (tag.GetName() == wxT("DL")) { - if (m_WParser->GetContainer()->GetFirstCell() != NULL) + if (m_WParser->GetContainer()->GetFirstChild() != NULL) { m_WParser->CloseContainer(); m_WParser->OpenContainer(); @@ -52,7 +54,7 @@ TAG_HANDLER_BEGIN(DEFLIST, "DL,DT,DD" ) ParseInner(tag); - if (m_WParser->GetContainer()->GetFirstCell() != NULL) + if (m_WParser->GetContainer()->GetFirstChild() != NULL) { m_WParser->CloseContainer(); m_WParser->OpenContainer();