]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetenv.C
ws changes only
[lyx.git] / src / insets / insetenv.C
index 3886f765e467cec78cedea51a3a4e63614ef8c47..88f414efe8c19febcbc448d6a029ca31bae927ec 100644 (file)
 #include <config.h>
 
 #include "insetenv.h"
+
 #include "bufferparams.h"
-#include "debug.h"
 #include "gettext.h"
-#include "lyxlayout.h"
-#include "lyxtextclass.h"
+#include "paragraph.h"
 #include "paragraph_funcs.h"
 #include "texrow.h"
-#include "support/LOstream.h"
 
-using std::ostream;
-using std::endl;
+#include "support/std_ostream.h"
+
+
+using std::string;
 using std::auto_ptr;
+using std::ostream;
 
 
 InsetEnvironment::InsetEnvironment
@@ -30,8 +31,8 @@ InsetEnvironment::InsetEnvironment
        : InsetText(bp), layout_(bp.getLyXTextClass()[name])
 {
        setInsetName(name);
-       autoBreakRows = true;
-       drawFrame_ = ALWAYS;
+       setAutoBreakRows(true);
+       setDrawFrame(ALWAYS);
 }