diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-24 11:26:19 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-24 11:27:51 +0200 |
commit | 04a84913ead2f82510d91eea2bb8526274feeeae (patch) | |
tree | a123ff892b74a778c6ae61de2e5caa2ee916416f /sd | |
parent | a250292c5eb7e4cdb2aa83bc08ae6c86c3ca65a1 (diff) |
use o3tl::typed_flags in ConfigurationListener::ConfigurationChanged
Change-Id: I0ad7c02953aa53168dc242f1f374ab871728c84e
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/inc/DrawViewShell.hxx | 2 | ||||
-rw-r--r-- | sd/source/ui/inc/WindowUpdater.hxx | 2 | ||||
-rw-r--r-- | sd/source/ui/slidesorter/inc/view/SlideSorterView.hxx | 2 | ||||
-rw-r--r-- | sd/source/ui/slidesorter/view/SlideSorterView.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/view/WindowUpdater.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/view/drviewsk.cxx | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/sd/source/ui/inc/DrawViewShell.hxx b/sd/source/ui/inc/DrawViewShell.hxx index a752df79070e..9a20e3431b8e 100644 --- a/sd/source/ui/inc/DrawViewShell.hxx +++ b/sd/source/ui/inc/DrawViewShell.hxx @@ -488,7 +488,7 @@ private: std::vector<std::unique_ptr<SdrExternalToolEdit>> m_ExternalEdits; - virtual void ConfigurationChanged( utl::ConfigurationBroadcaster* pCb, sal_uInt32 ) override; + virtual void ConfigurationChanged( utl::ConfigurationBroadcaster* pCb, ConfigurationHints ) override; void ConfigureAppBackgroundColor( svtools::ColorConfig* pColorConfig = nullptr ); diff --git a/sd/source/ui/inc/WindowUpdater.hxx b/sd/source/ui/inc/WindowUpdater.hxx index fe531de9735a..ee5dcd0f55f8 100644 --- a/sd/source/ui/inc/WindowUpdater.hxx +++ b/sd/source/ui/inc/WindowUpdater.hxx @@ -98,7 +98,7 @@ public: /** Callback that waits for notifications of a <type>SvtCTLOptions</type> object. */ - virtual void ConfigurationChanged ( utl::ConfigurationBroadcaster*, sal_uInt32 nHint) override; + virtual void ConfigurationChanged ( utl::ConfigurationBroadcaster*, ConfigurationHints nHint) override; private: /// Options to monitor for changes. diff --git a/sd/source/ui/slidesorter/inc/view/SlideSorterView.hxx b/sd/source/ui/slidesorter/inc/view/SlideSorterView.hxx index 87c5e8a62399..b0b5f5534dbe 100644 --- a/sd/source/ui/slidesorter/inc/view/SlideSorterView.hxx +++ b/sd/source/ui/slidesorter/inc/view/SlideSorterView.hxx @@ -133,7 +133,7 @@ public: virtual void ConfigurationChanged ( utl::ConfigurationBroadcaster* pBroadcaster, - sal_uInt32 nHint) override; + ConfigurationHints nHint) override; void HandleDataChangeEvent(); diff --git a/sd/source/ui/slidesorter/view/SlideSorterView.cxx b/sd/source/ui/slidesorter/view/SlideSorterView.cxx index f7cbdcf762c6..e41790b0b2cb 100644 --- a/sd/source/ui/slidesorter/view/SlideSorterView.cxx +++ b/sd/source/ui/slidesorter/view/SlideSorterView.cxx @@ -678,7 +678,7 @@ void SlideSorterView::Paint ( void SlideSorterView::ConfigurationChanged ( utl::ConfigurationBroadcaster* pBroadcaster, - sal_uInt32 nHint) + ConfigurationHints nHint) { // Some changes of the configuration (some of the colors for example) // may affect the previews. Throw away the old ones and create new ones. diff --git a/sd/source/ui/view/WindowUpdater.cxx b/sd/source/ui/view/WindowUpdater.cxx index 4ed9b9fa93d6..54ce0e292f6f 100644 --- a/sd/source/ui/view/WindowUpdater.cxx +++ b/sd/source/ui/view/WindowUpdater.cxx @@ -120,7 +120,7 @@ void WindowUpdater::UpdateWindow (OutputDevice* pDevice) const } } -void WindowUpdater::ConfigurationChanged( utl::ConfigurationBroadcaster*, sal_uInt32 ) +void WindowUpdater::ConfigurationChanged( utl::ConfigurationBroadcaster*, ConfigurationHints ) { // Set the current state at all registered output devices. tWindowList::iterator aWindowIterator (maWindowList.begin()); diff --git a/sd/source/ui/view/drviewsk.cxx b/sd/source/ui/view/drviewsk.cxx index aaf11ddfb471..739fa58fa248 100644 --- a/sd/source/ui/view/drviewsk.cxx +++ b/sd/source/ui/view/drviewsk.cxx @@ -14,7 +14,7 @@ namespace sd { -void DrawViewShell::ConfigurationChanged( utl::ConfigurationBroadcaster* pCb, sal_uInt32 ) +void DrawViewShell::ConfigurationChanged( utl::ConfigurationBroadcaster* pCb, ConfigurationHints ) { ConfigureAppBackgroundColor( dynamic_cast<svtools::ColorConfig*>(pCb) ); } |