[Libreoffice-commits] core.git: sw/source

Thorsten Behrens Thorsten.Behrens at CIB.de
Thu Jul 12 07:47:09 UTC 2018


 sw/source/uibase/uno/unotxdoc.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0853b05b1fabb231a7d57d811c5a06ee542d3295
Author: Thorsten Behrens <Thorsten.Behrens at CIB.de>
Date:   Thu Jul 12 00:11:30 2018 +0200

    Make setPagePrintSettings() accept IsLandscape again
    
    Regression from 80c35d97b9b3b60a091aae77de0ffef38cbf531a - invert
    the check for boost::optional validity.
    
    Change-Id: If4e041e1fe349c1fcb2c74b2e5780bf57300486f
    Reviewed-on: https://gerrit.libreoffice.org/57309
    Tested-by: Jenkins
    Reviewed-by: Thorsten Behrens <Thorsten.Behrens at CIB.de>

diff --git a/sw/source/uibase/uno/unotxdoc.cxx b/sw/source/uibase/uno/unotxdoc.cxx
index 31650d253f7f..73e69275a698 100644
--- a/sw/source/uibase/uno/unotxdoc.cxx
+++ b/sw/source/uibase/uno/unotxdoc.cxx
@@ -1147,7 +1147,7 @@ void SwXTextDocument::setPagePrintSettings(const Sequence< beans::PropertyValue
         else if(sName == "IsLandscape")
         {
             auto b = o3tl::tryAccess<bool>(rVal);
-            bException = bool(b);
+            bException = !b;
             if (b)
             {
                 aData.SetLandscape(*b);


More information about the Libreoffice-commits mailing list