X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/655719367ac5e131d9642e5783f3ecf64d1a3385..ae901b234c4a0aa7c1777b3bd181dd7f8517ad21:/src/html/m_style.cpp diff --git a/src/html/m_style.cpp b/src/html/m_style.cpp index 463c4ddc85..4002438bed 100644 --- a/src/html/m_style.cpp +++ b/src/html/m_style.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: m_style.cpp +// Name: src/html/m_style.cpp // Purpose: wxHtml module for parsing <style> tag // Author: Vaclav Slavik // RCS-ID: $Id$ @@ -7,21 +7,15 @@ // 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 - #ifdef __BORLANDC__ -#pragma hdrstop + #pragma hdrstop #endif -#ifndef WXPRECOMP +#if wxUSE_HTML && wxUSE_STREAMS + +#ifndef WX_PRECOMP #endif #include "wx/html/forcelnk.h" @@ -37,7 +31,7 @@ TAG_HANDLER_BEGIN(STYLE, "STYLE") { // 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)