From bfd855747ab4dc29216130f219c79a61b7594107 Mon Sep 17 00:00:00 2001 From: Juergen Spitzmueller Date: Sun, 8 Sep 2024 16:00:36 +0200 Subject: [PATCH] Fix indentation --- src/insets/InsetRef.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/insets/InsetRef.cpp b/src/insets/InsetRef.cpp index 593a3da6b5..d2a5e72c80 100644 --- a/src/insets/InsetRef.cpp +++ b/src/insets/InsetRef.cpp @@ -287,7 +287,7 @@ void InsetRef::latex(otexstream & os, OutputParams const & rp) const getFormattedCmd(data, label, prefix, use_refstyle, use_caps); os << fcmd; if (use_refstyle && use_plural) - os << "[s]"; + os << "[s]"; os << '{' << label << '}'; } else if (cmd == "labelonly") { @@ -298,7 +298,7 @@ void InsetRef::latex(otexstream & os, OutputParams const & rp) const docstring prefix; docstring suffix = split(ref, prefix, ':'); if (suffix.empty()) { - LYXERR0("Label `" << ref << "' contains no `:' separator."); + LYXERR0("Label `" << ref << "' contains no `:' separator."); os << ref; } else { os << suffix; -- 2.39.5