From 5dd4f05089608a66c435d6be36d4bc93dc425986 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 27 Sep 2019 18:35:47 +0300 Subject: Prework for HTML. --- src/texo.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/texo.cpp') diff --git a/src/texo.cpp b/src/texo.cpp index 1a2974a..03b31e7 100644 --- a/src/texo.cpp +++ b/src/texo.cpp @@ -1,9 +1,13 @@ #include "texo.hpp" -Texo::Texo(Type type): type(type), c(0) {} +Texo::Texo(Type type): + type(type), c(0), image_src(0), image_alt(0), link_url(0) +{} -Texo::Texo(const char c): type(character), c(c) {} +Texo::Texo(const char c): + type(character), c(c), image_src(0), image_alt(0), link_url(0) +{} void TexoExporter::PutStr(const char *str) -- cgit v1.2.3