From dd6db74abddfe27671c2593eefefa871466b02f5 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 17 Aug 2020 09:26:16 +0200 Subject: inline some use-once typedefs Change-Id: I683175c1e788a2a4cfec9504dc8dc3ebfee7c5de Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100858 Tested-by: Jenkins Reviewed-by: Noel Grandin --- configmgr/source/broadcaster.hxx | 26 +++++++------------------- 1 file changed, 7 insertions(+), 19 deletions(-) (limited to 'configmgr') 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_; }; } -- cgit