]> git.lyx.org Git - lyx.git/blobdiff - src/paragraph.C
update no.po
[lyx.git] / src / paragraph.C
index 1ca0c04ef1b5575dbd0a4e2e5d4156d77e6602d1..bd4a227814be2b1df0bb51bc9a916fa80c6080a3 100644 (file)
@@ -49,7 +49,6 @@ using std::fstream;
 using std::ios;
 using std::lower_bound;
 using std::upper_bound;
-using std::reverse;
 
 using lyx::pos_type;
 
@@ -1342,7 +1341,7 @@ bool Paragraph::simpleTeXOnePar(Buffer const * buf,
        else
                main_body = beginningOfMainBody();
 
-       int column = 0;
+       unsigned int column = 0;
 
        if (main_body > 0) {
                os << '[';
@@ -1748,9 +1747,6 @@ string const Paragraph::asString(Buffer const * buffer, bool label) const
                }
        }
 
-       if (isRightToLeftPar(bparams))
-               reverse(s.begin() + len,s.end());
-
        return s;
 }