summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-04-12 15:10:39 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-04-12 18:36:44 +0200
commit988e2a750e9b12bdad519b834083ee7f6794a0b6 (patch)
tree80f9bdfc9773d8ad5eb73a2d89409200ed9b7610 /desktop
parent087162b7142cf666478986461cdfa15c3d7fe382 (diff)
remove that unused old code
Change-Id: I576f6be6d229e29d0ae35ffb00d118bfd44b5544
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/sofficemain.cxx28
1 files changed, 0 insertions, 28 deletions
diff --git a/desktop/source/app/sofficemain.cxx b/desktop/source/app/sofficemain.cxx
index 8d402fd2506f..e86d901df603 100644
--- a/desktop/source/app/sofficemain.cxx
+++ b/desktop/source/app/sofficemain.cxx
@@ -142,32 +142,4 @@ extern "C" int DESKTOP_DLLPUBLIC soffice_main()
#endif
}
-#if defined(ANDROID) || defined(IOS)
-
-extern "C" void PtylTestEncryptionAndExport(const char *pathname)
-{
- OUString sUri(pathname, strlen(pathname), RTL_TEXTENCODING_UTF8);
- sUri = "file://" + sUri;
-
- css::uno::Reference<css::frame::XComponentLoader> loader(css::frame::Desktop::create(cppu::defaultBootstrap_InitialComponentContext()), css::uno::UNO_QUERY);
- css::uno::Reference<css::lang::XComponent> component;
- component.set(loader->loadComponentFromURL(sUri, "_default", 0, {}));
-
- utl::MediaDescriptor media;
- media[utl::MediaDescriptor::PROP_FILTERNAME()] <<= OUString("MS Word 2007 XML");
- OUString password("myPassword");
- css::uno::Sequence<css::beans::NamedValue> encryptionData { { "OOXPassword", css::uno::makeAny(password) } };
- media[utl::MediaDescriptor::PROP_ENCRYPTIONDATA()] <<= encryptionData;
-
- css::uno::Reference<css::frame::XModel> model(component, css::uno::UNO_QUERY);
- css::uno::Reference<css::frame::XStorable2> storable2(model, css::uno::UNO_QUERY);
- OUString saveAsUri(sUri + ".new.docx");
- SAL_INFO("desktop.app", "Trying to store as " << saveAsUri);
- OUString testPathName;
- osl::File::getSystemPathFromFileURL(saveAsUri+".txt", testPathName);
- storable2->storeToURL(saveAsUri, media.getAsConstPropertyValueList());
-}
-
-#endif
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */