summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-12-02 23:40:15 +0100
committerMichael Stahl <mstahl@redhat.com>2012-12-03 00:11:51 +0100
commit0c0dd979941f36658034f26920099c152f0aad80 (patch)
tree40534b52eb9e3435af9e58d8fec39b5dc5a46af6
parentd859632d9fceb944620b483cb567545b9995ae73 (diff)
API CHANGE: remove com.sun.star.util.XArchiver
This interface has been deprecated since OpenOffice.org initial CVS import, and there does not appear to have been an implementation of it, though strangely there was client code using it until 2007. EXISTENCE: published key "/UCR/com/sun/star/util/XArchiver" exists only in registry 1 Change-Id: I8efa29a3d375d7c5c77ae47592b23bec4072d7a0
-rw-r--r--offapi/UnoApi_offapi.mk1
-rw-r--r--offapi/com/sun/star/util/XArchiver.idl61
-rw-r--r--offapi/type_reference/types.rdbbin7453696 -> 7453696 bytes
-rw-r--r--sd/source/ui/app/sddll.cxx1
-rw-r--r--sd/source/ui/unoidl/sddetect.cxx1
-rw-r--r--sfx2/source/doc/docfile.cxx1
-rw-r--r--sw/source/ui/uno/swdetect.cxx1
7 files changed, 0 insertions, 66 deletions
diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk
index 0156118a4e25..89290d91123b 100644
--- a/offapi/UnoApi_offapi.mk
+++ b/offapi/UnoApi_offapi.mk
@@ -3942,7 +3942,6 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,offapi/com/sun/star/util,\
3942 TriState \ 3942 TriState \
3943 URL \ 3943 URL \
3944 VetoException \ 3944 VetoException \
3945 XArchiver \
3946 XAtomServer \ 3945 XAtomServer \
3947 XBroadcaster \ 3946 XBroadcaster \
3948 XCancelManager \ 3947 XCancelManager \
diff --git a/offapi/com/sun/star/util/XArchiver.idl b/offapi/com/sun/star/util/XArchiver.idl
deleted file mode 100644
index 163d38467396..000000000000
--- a/offapi/com/sun/star/util/XArchiver.idl
+++ /dev/null
@@ -1,61 +0,0 @@
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19#ifndef __com_sun_star_util_XArchiver_idl__
20#define __com_sun_star_util_XArchiver_idl__
21
22#include <com/sun/star/uno/XInterface.idl>
23
24#include <com/sun/star/beans/PropertyValue.idl>
25
26#include <com/sun/star/container/XIndexAccess.idl>
27
28
29
30module com { module sun { module star { module util {
31
32
33/** @deprecated
34 */
35published interface XArchiver: com::sun::star::uno::XInterface
36{
37 // DOCUMENTATION OMITTED FOR XArchiver::pack
38 boolean pack( [in] sequence<string> input,
39 [in] string destination,
40 [in] sequence<com::sun::star::beans::PropertyValue> aArgs );
41
42 // DOCUMENTATION OMITTED FOR XArchiver::unpack
43 boolean unpack( [in] string destinationpath,
44 [in] string source,
45 [in] sequence<string> files,
46 [in] sequence<com::sun::star::beans::PropertyValue> aArgs );
47
48 // DOCUMENTATION OMITTED FOR XArchiver::getContent
49 com::sun::star::container::XIndexAccess getContent( [in] string source );
50
51 // DOCUMENTATION OMITTED FOR XArchiver::getExtraData
52 string getExtraData( [in] string source );
53
54};
55
56
57}; }; }; };
58
59#endif
60
61/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/type_reference/types.rdb b/offapi/type_reference/types.rdb
index 2d4389415590..fb9fb4214000 100644
--- a/offapi/type_reference/types.rdb
+++ b/offapi/type_reference/types.rdb
Binary files differ
diff --git a/sd/source/ui/app/sddll.cxx b/sd/source/ui/app/sddll.cxx
index c367c4e577fc..97b5a021eb65 100644
--- a/sd/source/ui/app/sddll.cxx
+++ b/sd/source/ui/app/sddll.cxx
@@ -40,7 +40,6 @@
40#include <sfx2/docfile.hxx> 40#include <sfx2/docfile.hxx>
41#include <sfx2/fcontnr.hxx> 41#include <sfx2/fcontnr.hxx>
42#include <svtools/FilterConfigItem.hxx> 42#include <svtools/FilterConfigItem.hxx>
43#include <com/sun/star/util/XArchiver.hpp>
44#include <comphelper/processfactory.hxx> 43#include <comphelper/processfactory.hxx>
45 44
46using namespace ::rtl; 45using namespace ::rtl;
diff --git a/sd/source/ui/unoidl/sddetect.cxx b/sd/source/ui/unoidl/sddetect.cxx
index 83ac4334a4e7..222251c9c7e1 100644
--- a/sd/source/ui/unoidl/sddetect.cxx
+++ b/sd/source/ui/unoidl/sddetect.cxx
@@ -61,7 +61,6 @@
61#include <svtools/FilterConfigItem.hxx> 61#include <svtools/FilterConfigItem.hxx>
62#include <sot/storage.hxx> 62#include <sot/storage.hxx>
63#include <unotools/moduleoptions.hxx> 63#include <unotools/moduleoptions.hxx>
64#include <com/sun/star/util/XArchiver.hpp>
65 64
66#include "strmname.h" 65#include "strmname.h"
67 66
diff --git a/sfx2/source/doc/docfile.cxx b/sfx2/source/doc/docfile.cxx
index 2287e9ea1cf6..85b7981b1e43 100644
--- a/sfx2/source/doc/docfile.cxx
+++ b/sfx2/source/doc/docfile.cxx
@@ -45,7 +45,6 @@
45#include <com/sun/star/ucb/XContentProvider.hpp> 45#include <com/sun/star/ucb/XContentProvider.hpp>
46#include <com/sun/star/ucb/XProgressHandler.hpp> 46#include <com/sun/star/ucb/XProgressHandler.hpp>
47#include <com/sun/star/ucb/XCommandInfo.hpp> 47#include <com/sun/star/ucb/XCommandInfo.hpp>
48#include <com/sun/star/util/XArchiver.hpp>
49#include <com/sun/star/io/XOutputStream.hpp> 48#include <com/sun/star/io/XOutputStream.hpp>
50#include <com/sun/star/io/XInputStream.hpp> 49#include <com/sun/star/io/XInputStream.hpp>
51#include <com/sun/star/io/XTruncate.hpp> 50#include <com/sun/star/io/XTruncate.hpp>
diff --git a/sw/source/ui/uno/swdetect.cxx b/sw/source/ui/uno/swdetect.cxx
index 8e37f5aa4cf7..c5d7557349e4 100644
--- a/sw/source/ui/uno/swdetect.cxx
+++ b/sw/source/ui/uno/swdetect.cxx
@@ -55,7 +55,6 @@
55#include <sfx2/brokenpackageint.hxx> 55#include <sfx2/brokenpackageint.hxx>
56#include <svtools/FilterConfigItem.hxx> 56#include <svtools/FilterConfigItem.hxx>
57#include <unotools/moduleoptions.hxx> 57#include <unotools/moduleoptions.hxx>
58#include <com/sun/star/util/XArchiver.hpp>
59#include <comphelper/ihwrapnofilter.hxx> 58#include <comphelper/ihwrapnofilter.hxx>
60 59
61#include <swdll.hxx> 60#include <swdll.hxx>