summaryrefslogtreecommitdiff
path: root/src/texo.cpp
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2019-09-27 18:35:47 +0300
committerAleksey Veresov <aleksey@veresov.pro>2019-09-27 18:35:47 +0300
commit5dd4f05089608a66c435d6be36d4bc93dc425986 (patch)
treead3c7961983ffed2e225a1c6ae2f87df2664da89 /src/texo.cpp
parent2eae362fd3f50325067fa3d7e13db6882df80e76 (diff)
downloadtexo-5dd4f05089608a66c435d6be36d4bc93dc425986.tar
texo-5dd4f05089608a66c435d6be36d4bc93dc425986.tar.xz
texo-5dd4f05089608a66c435d6be36d4bc93dc425986.zip
Prework for HTML.
Diffstat (limited to 'src/texo.cpp')
-rw-r--r--src/texo.cpp8
1 files changed, 6 insertions, 2 deletions
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)