diff --git a/uppsrc/CodeEditor/TagSyntax.cpp b/uppsrc/CodeEditor/TagSyntax.cpp index d7fe04401..b73eb0173 100644 --- a/uppsrc/CodeEditor/TagSyntax.cpp +++ b/uppsrc/CodeEditor/TagSyntax.cpp @@ -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) diff --git a/uppsrc/CodeEditor/TagSyntax.h b/uppsrc/CodeEditor/TagSyntax.h index fa15d8a03..98d266f00 100644 --- a/uppsrc/CodeEditor/TagSyntax.h +++ b/uppsrc/CodeEditor/TagSyntax.h @@ -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(); }; diff --git a/uppsrc/CtrlLib/init b/uppsrc/CtrlLib/init index 824dec6ba..3c90182ca 100644 --- a/uppsrc/CtrlLib/init +++ b/uppsrc/CtrlLib/init @@ -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