]> git.lyx.org Git - lyx.git/blobdiff - src/BufferParams.cpp
Fix broken layout file syntax
[lyx.git] / src / BufferParams.cpp
index e3dcb879860ac9edd878c370977e8f44e9cdbcf2..403a2cbbe1fa0d2a46ea3abb3c6f899a58053ab7 100644 (file)
@@ -2127,9 +2127,12 @@ bool BufferParams::isExportable(string const & format) const
 
 
 namespace {
-bool formatSorter(Format const * lhs, Format const * rhs) {
+
+bool formatSorter(Format const * lhs, Format const * rhs)
+{
        return _(lhs->prettyname()) < _(rhs->prettyname());
 }
+
 }