]> git.lyx.org Git - lyx.git/commitdiff
Initialize recently added forceownlines_ bool
authorScott Kostyshak <skostysh@lyx.org>
Sat, 20 Dec 2014 20:05:20 +0000 (15:05 -0500)
committerScott Kostyshak <skostysh@lyx.org>
Sat, 20 Dec 2014 20:05:20 +0000 (15:05 -0500)
This adds on to the fix for #8875 (a25569eb).

lib/doc/Customization.lyx
src/insets/InsetLayout.cpp

index 073ef9ad812935e9795707c6f69196daa3099a40..2b804d5ce136f72e674ba85c1180d660adcfe1f6 100644 (file)
@@ -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
index 468b8474fa84e9eea24d9a7ab4ac6fd4d206289f..aa8c81be0e8e016c96807813beacb1c14f73dfe6 100644 (file)
@@ -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);
 }