diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-17 09:26:16 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-17 14:11:12 +0200 |
commit | dd6db74abddfe27671c2593eefefa871466b02f5 (patch) | |
tree | 8d7c9f5d34d1faefec4ff550add51a263b1c4fd6 /configmgr | |
parent | 28beaffba6a0ecaf351c84bed41443a6721d85b6 (diff) |
inline some use-once typedefs
Change-Id: I683175c1e788a2a4cfec9504dc8dc3ebfee7c5de
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100858
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'configmgr')
-rw-r--r-- | configmgr/source/broadcaster.hxx | 26 |
1 files changed, 7 insertions, 19 deletions
diff --git a/configmgr/source/broadcaster.hxx b/configmgr/source/broadcaster.hxx index bdb39adfbcbf..40778979ac1a 100644 --- a/configmgr/source/broadcaster.hxx +++ b/configmgr/source/broadcaster.hxx @@ -126,25 +126,13 @@ private: css::util::ChangesEvent const & theEvent); }; - typedef std::vector< DisposeNotification > DisposeNotifications; - - typedef std::vector< ContainerNotification > ContainerNotifications; - - typedef std::vector< PropertyChangeNotification > - PropertyChangeNotifications; - - typedef std::vector< PropertiesChangeNotification > - PropertiesChangeNotifications; - - typedef std::vector< ChangesNotification > ChangesNotifications; - - DisposeNotifications disposeNotifications_; - ContainerNotifications containerElementInsertedNotifications_; - ContainerNotifications containerElementRemovedNotifications_; - ContainerNotifications containerElementReplacedNotifications_; - PropertyChangeNotifications propertyChangeNotifications_; - PropertiesChangeNotifications propertiesChangeNotifications_; - ChangesNotifications changesNotifications_; + std::vector< DisposeNotification > disposeNotifications_; + std::vector< ContainerNotification > containerElementInsertedNotifications_; + std::vector< ContainerNotification > containerElementRemovedNotifications_; + std::vector< ContainerNotification > containerElementReplacedNotifications_; + std::vector< PropertyChangeNotification > propertyChangeNotifications_; + std::vector< PropertiesChangeNotification > propertiesChangeNotifications_; + std::vector< ChangesNotification > changesNotifications_; }; } |