commit 15ae3eb85c5494b4343936108cb3b5b7c53bafe4
Author: Scott Kostyshak <[email protected]>
Date:   Sat Dec 20 15:05:20 2014 -0500

    Initialize recently added forceownlines_ bool
    
    This adds on to the fix for #8875 (a25569eb).

diff --git a/lib/doc/Customization.lyx b/lib/doc/Customization.lyx
index 073ef9a..2b804d5 100644
--- a/lib/doc/Customization.lyx
+++ b/lib/doc/Customization.lyx
@@ -151,6 +151,7 @@ End
 \html_css_as_file 0
 \html_be_strict true
 \author -712698321 "Jürgen Spitzmüller" 
+\author 274215730 "scott" 
 \end_header
 
 \begin_body
@@ -17070,6 +17071,9 @@ status collapsed
 ] Force a a line break in the LaTeX output before the inset starts and after
  the inset ends.
  This assures the inset itself is output on its own lines, for parsing 
purposes.
+
+\change_inserted 274215730 1419105878
+ Default is false.
 \change_unchanged
 
 \end_layout
diff --git a/src/insets/InsetLayout.cpp b/src/insets/InsetLayout.cpp
index 468b847..aa8c81b 100644
--- a/src/insets/InsetLayout.cpp
+++ b/src/insets/InsetLayout.cpp
@@ -41,7 +41,8 @@ InsetLayout::InsetLayout() :
        passthru_(false), parbreakisnewline_(false), freespacing_(false), 
        keepempty_(false), forceltr_(false), 
        needprotect_(false), intoc_(false), spellcheck_(true), 
-       resetsfont_(false), display_(true), forcelocalfontswitch_(false)
+       resetsfont_(false), display_(true), forcelocalfontswitch_(false),
+       forceownlines_(false)
 {
        labelfont_.setColor(Color_error);
 }

Reply via email to