summaryrefslogtreecommitdiff
path: root/vcl/ios
diff options
context:
space:
mode:
authorjan Iversen <jani@libreoffice.org>2017-04-28 12:13:06 +0200
committerjan Iversen <jani@libreoffice.org>2017-04-28 12:19:44 +0200
commit5a394be952c0795cd12ed0eea8f5186e44814225 (patch)
treec2099048a40b0ebeaf4728638258ff8ec99896a2 /vcl/ios
parent9416611763a6c6e5bc04a938e909727579716db0 (diff)
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
Diffstat (limited to 'vcl/ios')
-rw-r--r--vcl/ios/iosinst.cxx4
1 files changed, 2 insertions, 2 deletions
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);
}