summaryrefslogtreecommitdiff
path: root/unotools/source/config/configvaluecontainer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unotools/source/config/configvaluecontainer.cxx')
-rw-r--r--unotools/source/config/configvaluecontainer.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/unotools/source/config/configvaluecontainer.cxx b/unotools/source/config/configvaluecontainer.cxx
index 22d7d98d9285..3aec56767f60 100644
--- a/unotools/source/config/configvaluecontainer.cxx
+++ b/unotools/source/config/configvaluecontainer.cxx
@@ -179,8 +179,6 @@ namespace utl
}
};
- typedef std::vector<NodeValueAccessor> NodeValueAccessors;
-
//= OConfigurationValueContainerImpl
struct OConfigurationValueContainerImpl
@@ -189,7 +187,7 @@ namespace utl
::osl::Mutex& rMutex; // the mutex for accessing the data containers
OConfigurationTreeRoot aConfigRoot; // the configuration node we're accessing
- NodeValueAccessors aAccessors; // the accessors to the node values
+ std::vector<NodeValueAccessor> aAccessors; // the accessors to the node values
OConfigurationValueContainerImpl( const Reference< XComponentContext >& _rxORB, ::osl::Mutex& _rMutex )
:xORB( _rxORB )