]> git.lyx.org Git - features.git/commitdiff
whitespace.
authorJuergen Spitzmueller <spitz@lyx.org>
Sun, 18 Dec 2016 08:54:37 +0000 (09:54 +0100)
committerJuergen Spitzmueller <spitz@lyx.org>
Sun, 18 Dec 2016 08:54:37 +0000 (09:54 +0100)
src/insets/InsetQuotes.cpp

index 147e17787d840dfe4a8918bb23bdec6fc7dc6d3c..60c64264b93c6375b27ccf18fc10367c00eafa17 100644 (file)
@@ -114,6 +114,7 @@ InsetQuotes::InsetQuotes(Buffer * buf, string const & str) : Inset(buf)
        parseString(str);
 }
 
+
 InsetQuotes::InsetQuotes(Buffer * buf, char_type c, QuoteTimes t,
                         string const & s, string const & l)
        : Inset(buf), times_(t), pass_thru_(false)
@@ -205,6 +206,7 @@ void InsetQuotes::parseString(string const & s)
        }
 }
 
+
 InsetQuotes::QuoteLanguage InsetQuotes::getLanguage(string const & s)
 {
        QuoteLanguage ql = EnglishQuotes;
@@ -297,6 +299,7 @@ void InsetQuotes::draw(PainterInfo & pi, int x, int y) const
        pi.pain.text(x, y, displayString(), font);
 }
 
+
 string InsetQuotes::getType() const
 {
        string text;
@@ -305,7 +308,8 @@ string InsetQuotes::getType() const
        text += times_char[times_];
        return text;
 }
-       
+
+
 void InsetQuotes::write(ostream & os) const
 {
        os << "Quotes " << getType();