]> git.lyx.org Git - lyx.git/commitdiff
Fix indentation
authorJuergen Spitzmueller <spitz@lyx.org>
Sun, 8 Sep 2024 14:00:36 +0000 (16:00 +0200)
committerJuergen Spitzmueller <spitz@lyx.org>
Sun, 8 Sep 2024 14:00:36 +0000 (16:00 +0200)
src/insets/InsetRef.cpp

index 593a3da6b545f09e9d3b90989295d352d8d38290..d2a5e72c802fe5a91b9e56fc3dfe0b8287df8d9a 100644 (file)
@@ -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;