diff options
author | Joseph Powers <jpowers27@cox.net> | 2011-02-16 07:15:00 -0800 |
---|---|---|
committer | Joseph Powers <jpowers27@cox.net> | 2011-02-16 07:15:00 -0800 |
commit | 58522fa86275ab2671314464d18bf706b9ee1797 (patch) | |
tree | d90ef496b68c61e5e432d6369d109818a4e955f5 /unotools/inc | |
parent | cfbd6e5967bf502e368c80c36be9af0a922c4786 (diff) |
Remove DECLARE_LIST( IMPL_ConfigurationListenerList, ConfigurationListener* )
Diffstat (limited to 'unotools/inc')
-rw-r--r-- | unotools/inc/unotools/options.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unotools/inc/unotools/options.hxx b/unotools/inc/unotools/options.hxx index 56f877e03fe7..d743e9571524 100644 --- a/unotools/inc/unotools/options.hxx +++ b/unotools/inc/unotools/options.hxx @@ -31,6 +31,7 @@ #include "sal/config.h" #include "unotools/unotoolsdllapi.h" +#include <vector> /* The class utl::detail::Options provides a kind of multiplexer. It implements a ConfigurationListener @@ -44,7 +45,6 @@ namespace utl { class ConfigurationBroadcaster; - class IMPL_ConfigurationListenerList; // interface for configuration listener class UNOTOOLS_DLLPUBLIC ConfigurationListener @@ -52,6 +52,7 @@ namespace utl { public: virtual void ConfigurationChanged( ConfigurationBroadcaster* p, sal_uInt32 nHint=0 ) = 0; }; + typedef ::std::vector< ConfigurationListener* > IMPL_ConfigurationListenerList; // complete broadcasting implementation class UNOTOOLS_DLLPUBLIC ConfigurationBroadcaster |