summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/file/filnot.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/file/filnot.hxx')
-rwxr-xr-x[-rw-r--r--]ucb/source/ucp/file/filnot.hxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/ucb/source/ucp/file/filnot.hxx b/ucb/source/ucp/file/filnot.hxx
index 24f982372328..789455af7602 100644..100755
--- a/ucb/source/ucp/file/filnot.hxx
+++ b/ucb/source/ucp/file/filnot.hxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -27,7 +28,7 @@
#ifndef _FILNOT_HXX_
#define _FILNOT_HXX_
-#include <hash_map>
+#include <boost/unordered_map.hpp>
#include <com/sun/star/uno/Sequence.hxx>
#include <com/sun/star/uno/XInterface.hpp>
#include <com/sun/star/beans/PropertyChangeEvent.hpp>
@@ -92,7 +93,7 @@ namespace fileaccess {
};
- typedef std::hash_map< rtl::OUString,
+ typedef boost::unordered_map< rtl::OUString,
com::sun::star::uno::Sequence< com::sun::star::uno::Reference< com::sun::star::uno::XInterface > >,
hashOUString,
equalOUString > ListenerMap;
@@ -135,3 +136,5 @@ namespace fileaccess {
} // end namespace fileaccess
#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */