[Libreoffice-commits] core.git: vcl/ios

jan Iversen jani at libreoffice.org
Fri Apr 28 10:20:22 UTC 2017


 vcl/ios/iosinst.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 5a394be952c0795cd12ed0eea8f5186e44814225
Author: jan Iversen <jani at libreoffice.org>
Date:   Fri Apr 28 12:13:06 2017 +0200

    iOS, fixed build breaker.
    
    Fast fix to build breaker from
    commit 3a36cf434fb4a967c9ea767cb7ac5f4da0502a0d
    
    Removing the parameter from the constructor gave ripple effects
    to move/copy constructors, so not done for now.
    
    Change-Id: I98e060e80946dbfe6586744e4f362ccb358a210d

diff --git a/vcl/ios/iosinst.cxx b/vcl/ios/iosinst.cxx
index e71b71156035..92cd91ada51b 100644
--- a/vcl/ios/iosinst.cxx
+++ b/vcl/ios/iosinst.cxx
@@ -89,9 +89,9 @@ public:
                      SalFrame           *pParent,
                      SalFrameStyleFlags  nSalFrameStyle,
                      SystemParentData   *pSysParent )
-        : SvpSalFrame( pInstance, pParent, nSalFrameStyle,
-                       pSysParent )
+        : SvpSalFrame( pInstance, pParent, nSalFrameStyle )
     {
+        pSysParent = NULL;
         if (pParent == NULL && viewWidth > 1 && viewHeight > 1)
             SetPosSize(0, 0, viewWidth, viewHeight, SAL_FRAME_POSSIZE_WIDTH | SAL_FRAME_POSSIZE_HEIGHT);
     }


More information about the Libreoffice-commits mailing list