]> git.lyx.org Git - lyx.git/commitdiff
fix warning.
authorAbdelrazak Younes <younes@lyx.org>
Wed, 24 Oct 2007 07:13:20 +0000 (07:13 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Wed, 24 Oct 2007 07:13:20 +0000 (07:13 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21165 a592a061-630c-0410-9148-cb99ea01b6c8

src/output_latex.cpp

index 92c1ca77d54d3e087f9bf9a30ea81f0a99f074ed..93f418b56e98feca2219dc84b7e65ba85eb22b19 100644 (file)
@@ -257,9 +257,10 @@ TeXOnePar(Buffer const & buf,
                Font const outerfont =
                        outerFont(std::distance(paragraphs.begin(), pit),
                                  paragraphs);
-               // FIXME UNICODE
-               bool need_par = pit->latex(buf, bparams, outerfont,
-                                            os, texrow, runparams_in);
+
+               /*bool need_par = */ pit->latex(buf, bparams, outerfont,
+                       os, texrow, runparams_in);
+
                os << '\n';
                texrow.newline();
                return ++pit;