X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c44fdc9401f92025ea8ae930cd03afd01ef3ae3f..7ea1c917764fb2588fe1aadc75c49ba300f8cb2f:/src/html/m_style.cpp diff --git a/src/html/m_style.cpp b/src/html/m_style.cpp index 112bf3aff4..3934a45990 100644 --- a/src/html/m_style.cpp +++ b/src/html/m_style.cpp @@ -4,20 +4,15 @@ // Author: Vaclav Slavik // RCS-ID: $Id$ // Copyright: (c) 2002 Vaclav Slavik -// Licence: wxWindows Licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ -#pragma implementation -#endif - #include "wx/wxprec.h" - #include "wx/defs.h" #if wxUSE_HTML && wxUSE_STREAMS -#ifdef __BORDLANDC__ +#ifdef __BORLANDC__ #pragma hdrstop #endif @@ -31,12 +26,13 @@ FORCE_LINK_ME(m_style) TAG_HANDLER_BEGIN(STYLE, "STYLE") + TAG_HANDLER_CONSTR(STYLE) { } - TAG_HANDLER_PROC(tag) + TAG_HANDLER_PROC(WXUNUSED(tag)) { // VS: Ignore styles for now. We must have this handler present, // because CSS style text would be rendered verbatim otherwise - return TRUE; + return true; } TAG_HANDLER_END(STYLE)