summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-01-31 15:36:49 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-01-31 15:50:10 +0100
commitca3e3e7e3198f492b2d4608ffc5420e657d99b00 (patch)
tree98b28439bf0cf0a45b8e87bbcb45aea0431d99c3 /svl
parent9babbf346c4d6f76e8b3a243a00e73a173c16ba6 (diff)
Move unotools/configuration.hxx to comphelper
...so that other code in comphelper can use it.
Diffstat (limited to 'svl')
-rw-r--r--svl/source/config/asiancfg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svl/source/config/asiancfg.cxx b/svl/source/config/asiancfg.cxx
index 51c20858148b..2e9e43f087fb 100644
--- a/svl/source/config/asiancfg.cxx
+++ b/svl/source/config/asiancfg.cxx
@@ -41,6 +41,7 @@
#include "com/sun/star/uno/Any.hxx"
#include "com/sun/star/uno/Reference.hxx"
#include "com/sun/star/uno/Sequence.hxx"
+#include "comphelper/configuration.hxx"
#include "comphelper/processfactory.hxx"
#include "officecfg/Office/Common.hxx"
#include "rtl/oustringostreaminserter.hxx"
@@ -50,7 +51,6 @@
#include "sal/log.hxx"
#include "sal/types.h"
#include "svl/asiancfg.hxx"
-#include "unotools/configuration.hxx"
namespace {
@@ -84,12 +84,12 @@ rtl::OUString toString(css::lang::Locale const & locale) {
struct SvxAsianConfig::Impl: private boost::noncopyable {
Impl():
context(comphelper::getProcessComponentContext()),
- batch(unotools::ConfigurationChanges::create(context))
+ batch(comphelper::ConfigurationChanges::create(context))
{}
css::uno::Reference< css::uno::XComponentContext > context;
- boost::shared_ptr< unotools::ConfigurationChanges > batch;
+ boost::shared_ptr< comphelper::ConfigurationChanges > batch;
};
SvxAsianConfig::SvxAsianConfig(): impl_(new Impl) {}