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

Stephan Bergmann (via logerrit) logerrit at kemper.freedesktop.org
Sun Dec 1 12:59:08 UTC 2019


 canvas/source/directx/dx_config.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 62d2d59f5fdb0068226165aac62c093c8174a674
Author:     Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Sat Nov 30 19:43:35 2019 +0100
Commit:     Stephan Bergmann <sbergman at redhat.com>
CommitDate: Sun Dec 1 13:58:16 2019 +0100

    Rewrite uses of boost::optional, Windows redux
    
    ...like 47dd2c63f649828a833543e21d4eca5866ec9ebe "Rewrite uses of
    boost::optional"
    
    Change-Id: I95373e151201563dcc9eb796f15121bc81341bfd
    Reviewed-on: https://gerrit.libreoffice.org/84138
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/canvas/source/directx/dx_config.cxx b/canvas/source/directx/dx_config.cxx
index f97f08b338a0..77fca04f65d9 100644
--- a/canvas/source/directx/dx_config.cxx
+++ b/canvas/source/directx/dx_config.cxx
@@ -78,7 +78,7 @@ namespace dxcanvas
             aName[0] = "MaxTextureSize";
             aProps = GetProperties( aName );
             if( aProps.getLength() > 0 )
-                maMaxTextureSize.reset( aProps[0].get<sal_Int32>() );
+                maMaxTextureSize = aProps[0].get<sal_Int32>();
             else
                 maMaxTextureSize.reset();
         }


More information about the Libreoffice-commits mailing list