summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/webdav/PropertyMap.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/webdav/PropertyMap.hxx')
-rwxr-xr-x[-rw-r--r--]ucb/source/ucp/webdav/PropertyMap.hxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/ucb/source/ucp/webdav/PropertyMap.hxx b/ucb/source/ucp/webdav/PropertyMap.hxx
index 624187b1746e..ca1cb03d8968 100644..100755
--- a/ucb/source/ucp/webdav/PropertyMap.hxx
+++ b/ucb/source/ucp/webdav/PropertyMap.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.
@@ -28,7 +29,7 @@
#ifndef _WEBDAV_UCP_PROPERTYMAP_HXX
#define _WEBDAV_UCP_PROPERTYMAP_HXX
-#include <hash_set>
+#include <boost/unordered_set.hpp>
#include <com/sun/star/beans/Property.hpp>
namespace webdav_ucp {
@@ -52,7 +53,7 @@ struct hashPropertyName
}
};
-typedef std::hash_set
+typedef boost::unordered_set
<
::com::sun::star::beans::Property,
hashPropertyName,
@@ -63,3 +64,5 @@ PropertyMap;
}
#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */