From 233c346c4af51371cb4744be5e1c9798d2fcac02 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 15 Nov 2019 19:14:11 +0300 Subject: . --- src/producer.cpp | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'src/producer.cpp') diff --git a/src/producer.cpp b/src/producer.cpp index 99e34e1..5d08369 100644 --- a/src/producer.cpp +++ b/src/producer.cpp @@ -66,8 +66,8 @@ bool TexoProducer::Underline() return true; } -bool TexoProducer::Link( - const ScriptVariable & link, const ScriptVariable & title) +bool TexoProducer::Link(const ScriptVariable & link, + const ScriptVariable & title) { return true; } @@ -79,7 +79,8 @@ bool TexoProducer::Link() bool TexoProducer::PutImage(const ScriptVariable & src, - const ScriptVariable & alt, const ScriptVariable & title) + const ScriptVariable & alt, + const ScriptVariable & title) { return true; } @@ -179,8 +180,8 @@ bool TexoProducerStrict::Underline() return SwitchMod(underline); } -bool TexoProducerStrict::Link( - const ScriptVariable & path, const ScriptVariable & title) +bool TexoProducerStrict::Link(const ScriptVariable & path, + const ScriptVariable & title) { if (IsOpened(link)) { int closed = CloseMods(link); @@ -210,7 +211,8 @@ bool TexoProducerStrict::Link() } bool TexoProducerStrict::PutImage(const ScriptVariable & src, - const ScriptVariable & alt, const ScriptVariable & title) + const ScriptVariable & alt, + const ScriptVariable & title) { return Start() && TruePutImage(src, alt, title); } -- cgit v1.2.3