From: Juergen Spitzmueller Date: Sun, 8 Sep 2024 14:00:36 +0000 (+0200) Subject: Fix indentation X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=bfd855747ab4dc29216130f219c79a61b7594107;p=lyx.git Fix indentation --- 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;