summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/file/filnot.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/file/filnot.hxx')
-rw-r--r--ucb/source/ucp/file/filnot.hxx11
1 files changed, 6 insertions, 5 deletions
diff --git a/ucb/source/ucp/file/filnot.hxx b/ucb/source/ucp/file/filnot.hxx
index be304b821447..ffecfe7910b1 100644
--- a/ucb/source/ucp/file/filnot.hxx
+++ b/ucb/source/ucp/file/filnot.hxx
@@ -25,6 +25,7 @@
#include <com/sun/star/ucb/XContentIdentifier.hpp>
#include "filglob.hxx"
#include <unordered_map>
+#include <vector>
namespace fileaccess {
@@ -37,21 +38,21 @@ namespace fileaccess {
css::uno::Reference< css::ucb::XContent > m_xCreatorContent;
css::uno::Reference< css::ucb::XContentIdentifier > m_xCreatorId;
css::uno::Reference< css::ucb::XContentIdentifier > m_xOldId;
- css::uno::Sequence< css::uno::Reference< css::uno::XInterface > > m_sListeners;
+ std::vector< css::uno::Reference< css::uno::XInterface > > m_sListeners;
public:
ContentEventNotifier(
shell* pMyShell,
const css::uno::Reference< css::ucb::XContent >& xCreatorContent,
const css::uno::Reference< css::ucb::XContentIdentifier >& xCreatorId,
- const css::uno::Sequence< css::uno::Reference< css::uno::XInterface > >& sListeners );
+ const std::vector< css::uno::Reference< css::uno::XInterface > >& sListeners );
ContentEventNotifier(
shell* pMyShell,
const css::uno::Reference< css::ucb::XContent >& xCreatorContent,
const css::uno::Reference< css::ucb::XContentIdentifier >& xCreatorId,
const css::uno::Reference< css::ucb::XContentIdentifier >& xOldId,
- const css::uno::Sequence< css::uno::Reference< css::uno::XInterface > >& sListeners );
+ const std::vector< css::uno::Reference< css::uno::XInterface > >& sListeners );
void notifyChildInserted( const OUString& aChildName );
void notifyDeleted();
@@ -64,11 +65,11 @@ namespace fileaccess {
{
private:
css::uno::Reference< css::ucb::XContent > m_xCreatorContent;
- css::uno::Sequence< css::uno::Reference< css::uno::XInterface > > m_sListeners;
+ std::vector< css::uno::Reference< css::uno::XInterface > > m_sListeners;
public:
PropertySetInfoChangeNotifier(
const css::uno::Reference< css::ucb::XContent >& xCreatorContent,
- const css::uno::Sequence< css::uno::Reference< css::uno::XInterface > >& sListeners );
+ const std::vector< css::uno::Reference< css::uno::XInterface > >& sListeners );
void SAL_CALL notifyPropertyAdded( const OUString & aPropertyName );
void SAL_CALL notifyPropertyRemoved( const OUString & aPropertyName );