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.cxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/unotools/source/config/configvaluecontainer.cxx b/unotools/source/config/configvaluecontainer.cxx
index 1697af6ceda8..8f5bf6d81a6f 100644
--- a/unotools/source/config/configvaluecontainer.cxx
+++ b/unotools/source/config/configvaluecontainer.cxx
@@ -28,15 +28,12 @@
#include <rtl/strbuf.hxx>
#endif
-
namespace utl
{
-
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::lang;
-
//= NodeValueAccessor
enum LocationType
@@ -162,10 +159,8 @@ namespace utl
}
}
-
//= functors on NodeValueAccessor instances
-
/// base class for functors syncronizing between exchange locations and config sub nodes
struct SubNodeAccess : public ::std::unary_function< NodeValueAccessor, void >
{
@@ -207,7 +202,6 @@ namespace utl
typedef std::vector<NodeValueAccessor> NodeValueAccessors;
-
//= OConfigurationValueContainerImpl
struct OConfigurationValueContainerImpl
@@ -225,10 +219,8 @@ namespace utl
}
};
-
//= OConfigurationValueContainer
-
OConfigurationValueContainer::OConfigurationValueContainer(
const Reference< XComponentContext >& _rxORB, ::osl::Mutex& _rAccessSafety,
const sal_Char* _pConfigLocation, const sal_uInt16 _nAccessFlags, const sal_Int32 _nLevels )
@@ -247,7 +239,6 @@ namespace utl
{
DBG_ASSERT( !m_pImpl->aConfigRoot.isValid(), "OConfigurationValueContainer::implConstruct: already initialized!" );
-
// create the configuration node we're about to work with
m_pImpl->aConfigRoot = OConfigurationTreeRoot::createWithComponentContext(
m_pImpl->xORB,
@@ -344,8 +335,6 @@ namespace utl
lcl_copyData( _rAccessor, m_pImpl->aConfigRoot.getNodeValue( _rAccessor.getPath() ), m_pImpl->rMutex );
}
-
} // namespace utl
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */