summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
Diffstat (limited to 'svtools')
-rw-r--r--svtools/inc/pch/precompiled_svt.hxx1
-rw-r--r--svtools/source/config/accessibilityoptions.cxx10
-rw-r--r--svtools/source/config/colorcfg.cxx1
-rw-r--r--svtools/source/config/extcolorcfg.cxx8
4 files changed, 7 insertions, 13 deletions
diff --git a/svtools/inc/pch/precompiled_svt.hxx b/svtools/inc/pch/precompiled_svt.hxx
index f330e081d7de..55c4d03ac730 100644
--- a/svtools/inc/pch/precompiled_svt.hxx
+++ b/svtools/inc/pch/precompiled_svt.hxx
@@ -349,7 +349,6 @@
#include <svl/nfkeytab.hxx>
#include <svl/ondemand.hxx>
#include <svl/poolitem.hxx>
-#include <svl/smplhint.hxx>
#include <svl/svldllapi.h>
#include <svl/urihelper.hxx>
#include <toolkit/awt/vclxdevice.hxx>
diff --git a/svtools/source/config/accessibilityoptions.cxx b/svtools/source/config/accessibilityoptions.cxx
index 1e7267835d60..0e874b0097fc 100644
--- a/svtools/source/config/accessibilityoptions.cxx
+++ b/svtools/source/config/accessibilityoptions.cxx
@@ -28,7 +28,7 @@
#include <comphelper/configurationhelper.hxx>
#include <comphelper/processfactory.hxx>
-#include <svl/smplhint.hxx>
+#include <svl/hint.hxx>
#include <svtools/colorcfg.hxx>
@@ -407,12 +407,8 @@ SvtAccessibilityOptions::~SvtAccessibilityOptions()
void SvtAccessibilityOptions::Notify( SfxBroadcaster&, const SfxHint& rHint )
{
NotifyListeners(0);
- const SfxSimpleHint* pSfxSimpleHint = dynamic_cast<const SfxSimpleHint*>(&rHint);
- if ( pSfxSimpleHint )
- {
- if ( pSfxSimpleHint->GetId() == SFX_HINT_ACCESSIBILITY_CHANGED )
- SetVCLSettings();
- }
+ if ( rHint.GetId() == SFX_HINT_ACCESSIBILITY_CHANGED )
+ SetVCLSettings();
}
diff --git a/svtools/source/config/colorcfg.cxx b/svtools/source/config/colorcfg.cxx
index 4af1d69ecf86..1f8eb4361311 100644
--- a/svtools/source/config/colorcfg.cxx
+++ b/svtools/source/config/colorcfg.cxx
@@ -30,7 +30,6 @@
#include <unotools/configpaths.hxx>
#include <com/sun/star/uno/Sequence.h>
#include <svl/poolitem.hxx>
-#include <svl/smplhint.hxx>
#include <osl/mutex.hxx>
#include "itemholder2.hxx"
diff --git a/svtools/source/config/extcolorcfg.cxx b/svtools/source/config/extcolorcfg.cxx
index 18c1807aa862..f800ff6f3584 100644
--- a/svtools/source/config/extcolorcfg.cxx
+++ b/svtools/source/config/extcolorcfg.cxx
@@ -31,7 +31,7 @@
#include <unotools/configpaths.hxx>
#include <com/sun/star/uno/Sequence.h>
#include <svl/poolitem.hxx>
-#include <svl/smplhint.hxx>
+#include <svl/hint.hxx>
#include <osl/mutex.hxx>
#include <vcl/svapp.hxx>
@@ -402,7 +402,7 @@ void ExtendedColorConfig_Impl::Notify( const uno::Sequence<OUString>& /*rProp
m_bBroadcastWhenUnlocked = true;
}
else
- Broadcast(SfxSimpleHint(SFX_HINT_COLORS_CHANGED));
+ Broadcast(SfxHint(SFX_HINT_COLORS_CHANGED));
}
void ExtendedColorConfig_Impl::ImplCommit()
@@ -501,7 +501,7 @@ void ExtendedColorConfig_Impl::SettingsChanged()
{
SolarMutexGuard aVclGuard;
- Broadcast( SfxSimpleHint( SFX_HINT_COLORS_CHANGED ) );
+ Broadcast( SfxHint( SFX_HINT_COLORS_CHANGED ) );
}
void ExtendedColorConfig_Impl::LockBroadcast()
@@ -519,7 +519,7 @@ void ExtendedColorConfig_Impl::UnlockBroadcast()
if ( ExtendedColorConfig_Impl::IsEnableBroadcast() )
{
m_bBroadcastWhenUnlocked = false;
- ExtendedColorConfig::m_pImpl->Broadcast(SfxSimpleHint(SFX_HINT_COLORS_CHANGED));
+ ExtendedColorConfig::m_pImpl->Broadcast(SfxHint(SFX_HINT_COLORS_CHANGED));
}
}
}