summaryrefslogtreecommitdiff
path: root/svl/source/notify
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/notify')
-rw-r--r--svl/source/notify/SfxBroadcaster.cxx2
-rw-r--r--svl/source/notify/broadcast.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/notify/SfxBroadcaster.cxx b/svl/source/notify/SfxBroadcaster.cxx
index 3b069b1989fc..089628112b71 100644
--- a/svl/source/notify/SfxBroadcaster.cxx
+++ b/svl/source/notify/SfxBroadcaster.cxx
@@ -55,7 +55,7 @@ void SfxBroadcaster::Broadcast( const SfxHint &rHint )
SfxBroadcaster::~SfxBroadcaster()
{
- Broadcast( SfxHint(SFX_HINT_DYING) );
+ Broadcast( SfxHint(SfxHintId::Dying) );
// remove all still registered listeners
for (size_t i = 0; i < mpImpl->m_Listeners.size(); ++i)
diff --git a/svl/source/notify/broadcast.cxx b/svl/source/notify/broadcast.cxx
index cd110e19e66e..237c323e5d0b 100644
--- a/svl/source/notify/broadcast.cxx
+++ b/svl/source/notify/broadcast.cxx
@@ -101,7 +101,7 @@ SvtBroadcaster::SvtBroadcaster( const SvtBroadcaster &rBC ) :
SvtBroadcaster::~SvtBroadcaster()
{
mbDisposing = true;
- Broadcast( SfxHint(SFX_HINT_DYING) );
+ Broadcast( SfxHint(SfxHintId::Dying) );
Normalize();