]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
fix compilation pb ; update eu.po
[lyx.git] / src / insets / insetfoot.C
index 9f65184713e2722bbc96dd367731234d9442b5a7..f6cdfb05efec919625b24ad1de7c5886f9e02356 100644 (file)
@@ -23,8 +23,6 @@
 #include "support/LOstream.h"
 #include "debug.h"
 
-using std::ostream;
-
 
 InsetFoot::InsetFoot()
        : InsetFootlike()
@@ -51,7 +49,7 @@ string const InsetFoot::EditMessage() const
 
 
 int InsetFoot::Latex(Buffer const * buf,
-                    ostream & os, bool fragile, bool fp) const
+                    std::ostream & os, bool fragile, bool fp) const
 {
        os << "\\footnote{%\n";
        
@@ -65,7 +63,7 @@ int InsetFoot::Latex(Buffer const * buf,
 bool InsetFoot::InsertInsetAllowed(Inset * in) const
 {
        if ((in->LyxCode() == Inset::FOOT_CODE) ||
-               (in->LyxCode() == Inset::MARGIN_CODE)) {
+           (in->LyxCode() == Inset::MARGIN_CODE)) {
                return false;
        }
        return true;