summaryrefslogtreecommitdiff
path: root/configmgr/source/nodemap.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/nodemap.hxx')
-rw-r--r--configmgr/source/nodemap.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/configmgr/source/nodemap.hxx b/configmgr/source/nodemap.hxx
index a000b30aef96..1c01aa39fca0 100644
--- a/configmgr/source/nodemap.hxx
+++ b/configmgr/source/nodemap.hxx
@@ -21,13 +21,14 @@
#define INCLUDED_CONFIGMGR_SOURCE_NODEMAP_HXX
#include <sal/config.h>
+#include <map>
#include "config_map.hxx"
#include <rtl/ref.hxx>
#include <node.hxx>
namespace configmgr {
-typedef config_map< rtl::Reference< Node > > NodeMapImpl;
+typedef std::map< OUString, rtl::Reference< Node >, LengthContentsCompare > NodeMapImpl;
class NodeMap
{
NodeMapImpl maImpl;