diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-10-07 17:20:32 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-10-07 17:20:32 +0200 |
commit | 1b613450f85d052b7343eacefd79abbfe4f35e2f (patch) | |
tree | 5bbce6b1abc6a1865801b1f50979f3b2305fdd5e /svl/source/svdde | |
parent | 6e98009240b492fda7cfbbdf0e8a01773eeffe64 (diff) |
More blind fix for --enable-pch Windows builds
Change-Id: I8e7c79a4d3a9d6c226f9d112c59ada5a7f76c7a4
Diffstat (limited to 'svl/source/svdde')
-rw-r--r-- | svl/source/svdde/ddesvr.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svl/source/svdde/ddesvr.cxx b/svl/source/svdde/ddesvr.cxx index 36070360ea8f..3cf115fa514a 100644 --- a/svl/source/svdde/ddesvr.cxx +++ b/svl/source/svdde/ddesvr.cxx @@ -669,7 +669,7 @@ void DdeTopic::NotifyClient( const OUString& rItem ) } } -void DdeTopic::Disconnect( HCONV nId ) +void DdeTopic::Disconnect( svl_dde::HCONV nId ) { std::vector<DdeItem*>::iterator iter; for (iter = aItems.begin(); iter != aItems.end(); ++iter) @@ -750,7 +750,7 @@ void DdeItem::NotifyClient() } } -void DdeItem::IncMonitor( HCONV nHCnv ) +void DdeItem::IncMonitor( svl_dde::HCONV nHCnv ) { if( !pImpData ) { @@ -768,10 +768,10 @@ void DdeItem::IncMonitor( HCONV nHCnv ) } } - pImpData->push_back( DdeItemImpData( nHCnv ) ); + pImpData->push_back( DdeItemImpData( static_cast<HCONV>(nHCnv) ) ); } -void DdeItem::DecMonitor( HCONV nHCnv ) +void DdeItem::DecMonitor( svl_dde::HCONV nHCnv ) { if( pImpData ) { |