]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxmanip.h
Fix the line-delete-forward bug?
[lyx.git] / src / support / lyxmanip.h
index 75e6c4e04d008f46cfbb3c7f0450f461b0c24337..bc106bed79229554475b6625c90c7fd0b5eec7bb 100644 (file)
@@ -2,7 +2,7 @@
 #ifndef LYX_MANIP_H
 #define LYX_MANIP_H
 
-#include <iostream>
+#include "support/LOstream.h"
 
 ///
 struct NewLineAndDepth_ {
@@ -17,9 +17,10 @@ NewLineAndDepth_ newlineAndDepth(int n)
        nlad_.depth_ = n;
        return nlad_;
 }
+
 ///
 inline
-ostream & operator<<(ostream & os, NewLineAndDepth_ const & nlad_)
+std::ostream & operator<<(std::ostream & os, NewLineAndDepth_ const & nlad_)
 {
        os << string(nlad_.depth_, ' ');
        return os;