ide: Fixed HTML highlighting issue

git-svn-id: svn://ultimatepp.org/upp/trunk@7400 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2014-05-27 13:02:15 +00:00
parent 2646b83cbf
commit 85a3fb861e
3 changed files with 10 additions and 2 deletions

View file

@ -2,10 +2,18 @@
NAMESPACE_UPP
TagSyntax::TagSyntax()
{
Clear();
hout = NULL;
html = true;
}
void TagSyntax::Clear()
{
hl_ink = INK_NORMAL;
hl_paper = PAPER_NORMAL;
status = TEXT;
}
void TagSyntax::Put0(int ink, int n, int paper)

View file

@ -38,5 +38,5 @@ public:
void Html(bool b) { html = b; }
CSyntax *GetScript() { return status == SCRIPT ? &script : NULL; }
TagSyntax() { Clear(); hout = NULL; html = true; }
TagSyntax();
};

View file

@ -2,7 +2,7 @@
#define _CtrlLib_icpp_init_stub
#include "CtrlCore/init"
#include "PdfDraw/init"
#define BLITZ_INDEX__ F2a95805f3896075b0a556396aabaf515
#define BLITZ_INDEX__ Fa588a2a7bb40a3ed36760f6c2bef5026
#include "CtrlLib.icpp"
#undef BLITZ_INDEX__
#endif