summaryrefslogtreecommitdiff
path: root/src/texo.cpp
diff options
context:
space:
mode:
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)