summaryrefslogtreecommitdiffstats
path: root/svl
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2016-10-07 17:47:35 +0200
committerMichael Stahl <mstahl@redhat.com>2016-10-07 17:47:35 +0200
commitce650fc1cd83ff94183b783c95b9f20aaa14f942 (patch)
tree05b8e5a33c430e8293c0061906bcd00c5161bcff /svl
parentMore blind fix for --enable-pch Windows builds (diff)
downloadcore-ce650fc1cd83ff94183b783c95b9f20aaa14f942.tar.gz
core-ce650fc1cd83ff94183b783c95b9f20aaa14f942.zip
Revert "More blind fix for --enable-pch Windows builds"
This reverts commit 1b613450f85d052b7343eacefd79abbfe4f35e2f.
Diffstat (limited to 'svl')
-rw-r--r--svl/source/svdde/ddesvr.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svl/source/svdde/ddesvr.cxx b/svl/source/svdde/ddesvr.cxx
index 3cf115fa514a..36070360ea8f 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( svl_dde::HCONV nId )
+void DdeTopic::Disconnect( 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( svl_dde::HCONV nHCnv )
+void DdeItem::IncMonitor( HCONV nHCnv )
{
if( !pImpData )
{
@@ -768,10 +768,10 @@ void DdeItem::IncMonitor( svl_dde::HCONV nHCnv )
}
}
- pImpData->push_back( DdeItemImpData( static_cast<HCONV>(nHCnv) ) );
+ pImpData->push_back( DdeItemImpData( nHCnv ) );
}
-void DdeItem::DecMonitor( svl_dde::HCONV nHCnv )
+void DdeItem::DecMonitor( HCONV nHCnv )
{
if( pImpData )
{