]> git.lyx.org Git - features.git/blobdiff - src/insets/InsetListings.cpp
Get rid of spelling and language marks in info inset
[features.git] / src / insets / InsetListings.cpp
index 471605a28ccba6d9ab7cfa5769d99f7fb2f5d416..67a046208542ce222b671301be29e2c78a73379e 100644 (file)
@@ -41,6 +41,7 @@
 #include "frontends/alert.h"
 #include "frontends/Application.h"
 
+#include <cstring>
 #include <regex>
 #include <sstream>
 
@@ -64,7 +65,7 @@ InsetListings::~InsetListings()
 }
 
 
-Inset::RowFlags InsetListings::rowFlags() const
+int InsetListings::rowFlags() const
 {
        return params().isInline() || params().isFloat() ? Inline : Display | AlignLeft;
 }
@@ -312,9 +313,9 @@ void InsetListings::latex(otexstream & os, OutputParams const & runparams) const
                        }
                }
                ++par;
-               // Add new line for displayed listing between paragraphs.
+               // Add new line between paragraphs in displayed listings.
                // Exception: merged paragraphs in change tracking mode.
-               // Also, ยดfor the inline case, if there are multiple paragraphs
+               // Also, for the inline case, if there are multiple paragraphs
                // they are simply joined. Otherwise, expect latex errors.
                if (par != end && !isInline && !captionline && !par->parEndChange().deleted())
                        code += "\n";