diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-10-07 21:26:06 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-10-07 21:34:07 +0300 |
commit | 99b935ff7dd069f2a0aad5054d07bc6f71411d84 (patch) | |
tree | 4eda30de44078f9e68c2e4f153bf8af687d8e8a6 /vcl/headless/svpframe.cxx | |
parent | 3c9da1fbfae9c00a5eb9ddcb106a01b075703fcd (diff) |
Make this compile for iOS again
Change-Id: Idd4a1e6d50652a879493d8411c59605ca1a53dfb
Diffstat (limited to 'vcl/headless/svpframe.cxx')
-rw-r--r-- | vcl/headless/svpframe.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/vcl/headless/svpframe.cxx b/vcl/headless/svpframe.cxx index 408e05d81d17..b4acde56ea53 100644 --- a/vcl/headless/svpframe.cxx +++ b/vcl/headless/svpframe.cxx @@ -77,11 +77,11 @@ SvpSalFrame::SvpSalFrame( SvpSalInstance* pInstance, m_pParent( static_cast<SvpSalFrame*>(pParent) ), m_nStyle( nSalFrameStyle ), m_bVisible( false ), - m_bTopDown( bTopDown ), #ifndef IOS + m_bTopDown( bTopDown ), m_bDamageTracking( false ), -#endif m_nScanlineFormat( nScanlineFormat ), +#endif m_nMinWidth( 0 ), m_nMinHeight( 0 ), m_nMaxWidth( 0 ), @@ -92,7 +92,8 @@ SvpSalFrame::SvpSalFrame( SvpSalInstance* pInstance, memset( static_cast<void *>(&m_aSystemChildData), 0, sizeof( SystemEnvData ) ); m_aSystemChildData.nSize = sizeof( SystemEnvData ); #ifdef IOS - // Nothing + (void) bTopDown; + (void) nScanlineFormat; #elif defined ANDROID // Nothing #else |