From cdb97fda82de70b86655e50a1297daa03398577e Mon Sep 17 00:00:00 2001 From: Thomas Fussell Date: Sun, 1 Jan 2017 09:12:01 -0500 Subject: [PATCH] try that again --- source/cell/rich_text.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/cell/rich_text.cpp b/source/cell/rich_text.cpp index 3543b284..59d64af9 100644 --- a/source/cell/rich_text.cpp +++ b/source/cell/rich_text.cpp @@ -34,7 +34,7 @@ rich_text::rich_text(const std::string &plain_text) } rich_text::rich_text(const std::string &plain_text, const class font &text_font) - : rich_text(rich_text_run{plain_text, text_font}) + : rich_text(std::make_pair(plain_text, optional(text_font))) { }