summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-06-01 15:15:25 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-06-06 10:53:34 +0200
commit0fcd1a73f0e1ec564f3c6da1ccd890183d3c18db (patch)
tree3895ecd6f804b8f3ef3a8f03f1739e17918feeef /dbaccess/source/filter
parentfdo#46808, Adapt UNO services to new style, Part 7, updating ::create (diff)
downloadcore-0fcd1a73f0e1ec564f3c6da1ccd890183d3c18db.tar.gz
core-0fcd1a73f0e1ec564f3c6da1ccd890183d3c18db.zip
fdo#46808, Adapt UNO services to new style, Part 7, updating ::create
Update code to use factory method URLTransformer::create Change-Id: I3fd2e838497bcfd8fc949615c0e7d60a6ea47118 Signed-off-by: Stephan Bergmann <sbergman@redhat.com>, added some tweaks.
Diffstat (limited to 'dbaccess/source/filter')
-rw-r--r--dbaccess/source/filter/xml/dbloader2.cxx14
1 files changed, 6 insertions, 8 deletions
diff --git a/dbaccess/source/filter/xml/dbloader2.cxx b/dbaccess/source/filter/xml/dbloader2.cxx
index df140ed3e71d..8291bcbf161a 100644
--- a/dbaccess/source/filter/xml/dbloader2.cxx
+++ b/dbaccess/source/filter/xml/dbloader2.cxx
@@ -53,6 +53,7 @@
#include <com/sun/star/sdb/XDocumentDataSource.hpp>
#include <com/sun/star/task/XJobExecutor.hpp>
#include <com/sun/star/ui/dialogs/XExecutableDialog.hpp>
+#include <com/sun/star/util/URLTransformer.hpp>
#include <com/sun/star/util/XURLTransformer.hpp>
#include <com/sun/star/view/XSelectionSupplier.hpp>
#include <com/sun/star/sdb/application/DatabaseObjectContainer.hpp>
@@ -340,14 +341,11 @@ namespace
bool bDoesAllow = sal_False;
try
{
- Reference< XURLTransformer > xTransformer;
- if ( _rContext.createComponent( "com.sun.star.util.URLTransformer", xTransformer ) )
- {
- URL aURL;
- aURL.Complete = _rURL;
- xTransformer->parseStrict( aURL );
- bDoesAllow = aURL.Arguments == "Interactive";
- }
+ Reference< XURLTransformer > xTransformer( URLTransformer::create(_rContext.getUNOContext()) );
+ URL aURL;
+ aURL.Complete = _rURL;
+ xTransformer->parseStrict( aURL );
+ bDoesAllow = aURL.Arguments == "Interactive";
}
catch( const Exception& )
{