]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeXFeatures.C
Minor code shuffle.
[lyx.git] / src / LaTeXFeatures.C
index 3877a1a36d1766620c7c0b8e192e2a219269b12d..b291666dc27b6ab45c6de470f0390e0678d2b0b6 100644 (file)
@@ -71,7 +71,7 @@ LaTeXFeatures::LaTeXFeatures(BufferParams const & p, LyXTextClass::size_type n)
        boldsymbol = false;
     
        // special features
-       LyXParagraphIndent = false;
+       ParagraphIndent = false;
        NeedLyXFootnoteCode = false;
        NeedLyXMinipageIndent = false;
 }
@@ -321,7 +321,7 @@ string const LaTeXFeatures::getMacros() const
        // other
         if (NeedLyXMinipageIndent) 
                macros << minipageindent_def;
-        if (LyXParagraphIndent) 
+        if (ParagraphIndent) 
                macros << paragraphindent_def;
         if (NeedLyXFootnoteCode) 
                macros << floatingfootnote_def;
@@ -390,7 +390,7 @@ BufferParams const & LaTeXFeatures::bufferParams() const
 }
 
 
-void LaTeXFeatures::getFloatDefinitions(ostream & os) const
+void LaTeXFeatures::getFloatDefinitions(std::ostream & os) const
 {
        // Here we will output the code to create the needed float styles.
        // We will try to do this as minimal as possible.