X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/14f355c2b5c71fc7c3d680aea366582d2ac60f7b..81f6ea4a29eb815dbed0adea369efdc8fece0269:/src/html/m_dflist.cpp?ds=sidebyside diff --git a/src/html/m_dflist.cpp b/src/html/m_dflist.cpp index e158936b78..419a90dcc1 100644 --- a/src/html/m_dflist.cpp +++ b/src/html/m_dflist.cpp @@ -4,16 +4,11 @@ // Author: Vaclav Slavik // RCS-ID: $Id$ // Copyright: (c) 1999 Vaclav Slavik -// Licence: wxWindows Licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma implementation -#endif - #include "wx/wxprec.h" - #include "wx/defs.h" #if wxUSE_HTML && wxUSE_STREAMS @@ -61,7 +56,7 @@ TAG_HANDLER_BEGIN(DEFLIST, "DL,DT,DD" ) } m_WParser->GetContainer()->SetIndent(m_WParser->GetCharHeight(), wxHTML_INDENT_TOP); - return TRUE; + return true; } else if (tag.GetName() == wxT("DT")) { @@ -69,14 +64,14 @@ TAG_HANDLER_BEGIN(DEFLIST, "DL,DT,DD" ) c = m_WParser->OpenContainer(); c->SetAlignHor(wxHTML_ALIGN_LEFT); c->SetMinHeight(m_WParser->GetCharHeight()); - return FALSE; + return false; } else // "DD" { m_WParser->CloseContainer(); c = m_WParser->OpenContainer(); c->SetIndent(5 * m_WParser->GetCharWidth(), wxHTML_INDENT_LEFT); - return FALSE; + return false; } }