diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-09-28 20:43:31 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-09-29 10:21:15 +0000 |
commit | 1b4994065ec50b2ef7a38f26b95b8543b4ff640d (patch) | |
tree | ab0bba9f9b8c1657e8d2f462e656a7cf4be68b9d /vcl/headless | |
parent | 97a2ca5d689612a44a93cc7932eb2e7e46be4a68 (diff) |
retain type for another level
Change-Id: I4017e5404c99d37b36988f1d7a8ce17e42010070
Reviewed-on: https://gerrit.libreoffice.org/18913
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/headless')
-rw-r--r-- | vcl/headless/svpframe.cxx | 2 | ||||
-rw-r--r-- | vcl/headless/svpinst.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/vcl/headless/svpframe.cxx b/vcl/headless/svpframe.cxx index 459a71070bb3..f019ea5f4f8d 100644 --- a/vcl/headless/svpframe.cxx +++ b/vcl/headless/svpframe.cxx @@ -191,7 +191,7 @@ void SvpSalFrame::ReleaseGraphics( SalGraphics* pGraphics ) delete pSvpGraphics; } -bool SvpSalFrame::PostEvent( void* pData ) +bool SvpSalFrame::PostEvent(ImplSVEvent* pData) { m_pInstance->PostEvent( this, pData, SALEVENT_USEREVENT ); return true; diff --git a/vcl/headless/svpinst.cxx b/vcl/headless/svpinst.cxx index 17d98b0efb3a..0b649ba81e35 100644 --- a/vcl/headless/svpinst.cxx +++ b/vcl/headless/svpinst.cxx @@ -115,7 +115,7 @@ SvpSalInstance::~SvpSalInstance() osl_destroyMutex( m_aEventGuard ); } -void SvpSalInstance::PostEvent( const SalFrame* pFrame, void* pData, sal_uInt16 nEvent ) +void SvpSalInstance::PostEvent(const SalFrame* pFrame, void* pData, sal_uInt16 nEvent) { if( osl_acquireMutex( m_aEventGuard ) ) { |