offapi/UnoApi_offapi.mk | 4 - offapi/com/sun/star/util/XArchiver.idl | 61 ----------------------- offapi/com/sun/star/util/XCancelManager.idl | 52 ------------------- offapi/com/sun/star/util/XSimpleErrorHandler.idl | 42 --------------- offapi/com/sun/star/view/XPrintPreview.idl | 46 ----------------- offapi/type_reference/types.rdb |binary sd/source/ui/app/sddll.cxx | 1 sd/source/ui/unoidl/sddetect.cxx | 1 sfx2/source/doc/docfile.cxx | 1 sw/source/ui/uno/swdetect.cxx | 1 10 files changed, 209 deletions(-)
New commits: commit 99e31f6ead140594deb98fa8e794708403b8113d Author: Michael Stahl <mst...@redhat.com> Date: Sun Dec 2 23:56:35 2012 +0100 API CHANGE: remove com.sun.star.util.XSimpleErrorHandler This interface has been deprecated since OpenOffice.org initial CVS import. EXISTENCE: published key "/UCR/com/sun/star/util/XSimpleErrorHandler" exists only in registry 1 Change-Id: I28b2a9dd0180994c077d960bf932fbdea0f282c4 diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk index a0874e8..f6f5180 100644 --- a/offapi/UnoApi_offapi.mk +++ b/offapi/UnoApi_offapi.mk @@ -3988,7 +3988,6 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,offapi/com/sun/star/util,\ XReplaceable \ XSearchDescriptor \ XSearchable \ - XSimpleErrorHandler \ XSortable \ XStringAbbreviation \ XStringEscape \ diff --git a/offapi/com/sun/star/util/XSimpleErrorHandler.idl b/offapi/com/sun/star/util/XSimpleErrorHandler.idl deleted file mode 100644 index b32a619..0000000 --- a/offapi/com/sun/star/util/XSimpleErrorHandler.idl +++ /dev/null @@ -1,42 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ -#ifndef __com_sun_star_util_XSimpleErrorHandler_idl__ -#define __com_sun_star_util_XSimpleErrorHandler_idl__ - -#include <com/sun/star/uno/XInterface.idl> - - -module com { module sun { module star { module util { - -// DOCUMENTATION OMITTED FOR XSimpleErrorHandler -/** @deprecated - */ -published interface XSimpleErrorHandler: com::sun::star::uno::XInterface -{ - // DOCUMENTATION OMITTED FOR XSimpleErrorHandler::handleError - boolean handleError( [in] any Exception ); - -}; - - -}; }; }; }; - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/offapi/type_reference/types.rdb b/offapi/type_reference/types.rdb index fbb72f8..a6ff8e4 100644 Binary files a/offapi/type_reference/types.rdb and b/offapi/type_reference/types.rdb differ commit 00cb5762b7af2b5e2e72d36e4553d4e14b5e8bbe Author: Michael Stahl <mst...@redhat.com> Date: Sun Dec 2 23:51:22 2012 +0100 API CHANGE: remove com.sun.star.util.XCancelManager This interface has been deprecated since OpenOffice.org initial CVS import. EXISTENCE: published key "/UCR/com/sun/star/util/XCancelManager" exists only in registry 1 Change-Id: Ibc67f79b4664f8ff9aadacdd36cd8e80c9ff477c diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk index 89290d9..a0874e8 100644 --- a/offapi/UnoApi_offapi.mk +++ b/offapi/UnoApi_offapi.mk @@ -3944,7 +3944,6 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,offapi/com/sun/star/util,\ VetoException \ XAtomServer \ XBroadcaster \ - XCancelManager \ XCancellable \ XChainable \ XChangesBatch \ diff --git a/offapi/com/sun/star/util/XCancelManager.idl b/offapi/com/sun/star/util/XCancelManager.idl deleted file mode 100644 index da741ab..0000000 --- a/offapi/com/sun/star/util/XCancelManager.idl +++ /dev/null @@ -1,52 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ -#ifndef __com_sun_star_util_XCancelManager_idl__ -#define __com_sun_star_util_XCancelManager_idl__ - -#include <com/sun/star/uno/XInterface.idl> - -#include <com/sun/star/util/XCancellable.idl> - - - -module com { module sun { module star { module util { - - -/** manages a list of cancelable objects. - - @deprecated - */ -published interface XCancelManager: com::sun::star::uno::XInterface -{ - /** registers a cancelable object. - */ - void registerCancellable( [in] com::sun::star::util::XCancellable Cancel ); - - /** deregisters a cancelable object. - */ - void releaseCancellable( [in] com::sun::star::util::XCancellable Cancel ); - -}; - - -}; }; }; }; - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/offapi/type_reference/types.rdb b/offapi/type_reference/types.rdb index fb9fb42..fbb72f8 100644 Binary files a/offapi/type_reference/types.rdb and b/offapi/type_reference/types.rdb differ commit 0c0dd979941f36658034f26920099c152f0aad80 Author: Michael Stahl <mst...@redhat.com> Date: Sun Dec 2 23:40:15 2012 +0100 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 diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk index 0156118..89290d9 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,\ TriState \ URL \ VetoException \ - XArchiver \ XAtomServer \ XBroadcaster \ XCancelManager \ diff --git a/offapi/com/sun/star/util/XArchiver.idl b/offapi/com/sun/star/util/XArchiver.idl deleted file mode 100644 index 163d384..0000000 --- a/offapi/com/sun/star/util/XArchiver.idl +++ /dev/null @@ -1,61 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ -#ifndef __com_sun_star_util_XArchiver_idl__ -#define __com_sun_star_util_XArchiver_idl__ - -#include <com/sun/star/uno/XInterface.idl> - -#include <com/sun/star/beans/PropertyValue.idl> - -#include <com/sun/star/container/XIndexAccess.idl> - - - -module com { module sun { module star { module util { - - -/** @deprecated - */ -published interface XArchiver: com::sun::star::uno::XInterface -{ - // DOCUMENTATION OMITTED FOR XArchiver::pack - boolean pack( [in] sequence<string> input, - [in] string destination, - [in] sequence<com::sun::star::beans::PropertyValue> aArgs ); - - // DOCUMENTATION OMITTED FOR XArchiver::unpack - boolean unpack( [in] string destinationpath, - [in] string source, - [in] sequence<string> files, - [in] sequence<com::sun::star::beans::PropertyValue> aArgs ); - - // DOCUMENTATION OMITTED FOR XArchiver::getContent - com::sun::star::container::XIndexAccess getContent( [in] string source ); - - // DOCUMENTATION OMITTED FOR XArchiver::getExtraData - string getExtraData( [in] string source ); - -}; - - -}; }; }; }; - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/offapi/type_reference/types.rdb b/offapi/type_reference/types.rdb index 2d43894..fb9fb42 100644 Binary files a/offapi/type_reference/types.rdb and b/offapi/type_reference/types.rdb differ diff --git a/sd/source/ui/app/sddll.cxx b/sd/source/ui/app/sddll.cxx index c367c4e..97b5a02 100644 --- a/sd/source/ui/app/sddll.cxx +++ b/sd/source/ui/app/sddll.cxx @@ -40,7 +40,6 @@ #include <sfx2/docfile.hxx> #include <sfx2/fcontnr.hxx> #include <svtools/FilterConfigItem.hxx> -#include <com/sun/star/util/XArchiver.hpp> #include <comphelper/processfactory.hxx> using namespace ::rtl; diff --git a/sd/source/ui/unoidl/sddetect.cxx b/sd/source/ui/unoidl/sddetect.cxx index 83ac433..222251c 100644 --- a/sd/source/ui/unoidl/sddetect.cxx +++ b/sd/source/ui/unoidl/sddetect.cxx @@ -61,7 +61,6 @@ #include <svtools/FilterConfigItem.hxx> #include <sot/storage.hxx> #include <unotools/moduleoptions.hxx> -#include <com/sun/star/util/XArchiver.hpp> #include "strmname.h" diff --git a/sfx2/source/doc/docfile.cxx b/sfx2/source/doc/docfile.cxx index 2287e9e..85b7981 100644 --- a/sfx2/source/doc/docfile.cxx +++ b/sfx2/source/doc/docfile.cxx @@ -45,7 +45,6 @@ #include <com/sun/star/ucb/XContentProvider.hpp> #include <com/sun/star/ucb/XProgressHandler.hpp> #include <com/sun/star/ucb/XCommandInfo.hpp> -#include <com/sun/star/util/XArchiver.hpp> #include <com/sun/star/io/XOutputStream.hpp> #include <com/sun/star/io/XInputStream.hpp> #include <com/sun/star/io/XTruncate.hpp> diff --git a/sw/source/ui/uno/swdetect.cxx b/sw/source/ui/uno/swdetect.cxx index 8e37f5a..c5d7557 100644 --- a/sw/source/ui/uno/swdetect.cxx +++ b/sw/source/ui/uno/swdetect.cxx @@ -55,7 +55,6 @@ #include <sfx2/brokenpackageint.hxx> #include <svtools/FilterConfigItem.hxx> #include <unotools/moduleoptions.hxx> -#include <com/sun/star/util/XArchiver.hpp> #include <comphelper/ihwrapnofilter.hxx> #include <swdll.hxx> commit d859632d9fceb944620b483cb567545b9995ae73 Author: Michael Stahl <mst...@redhat.com> Date: Sun Dec 2 23:26:47 2012 +0100 API CHANGE: remove com.sun.star.view.XPrintPreview This interface has been deprecated since OpenOffice.org initial CVS import. EXISTENCE: published key "/UCR/com/sun/star/view/XPrintPreview" exists only in registry 1 Change-Id: I995b7b4fbbdac5582e015daf11d4c644abc53b73 diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk index b835a65..0156118 100644 --- a/offapi/UnoApi_offapi.mk +++ b/offapi/UnoApi_offapi.mk @@ -4019,7 +4019,6 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,offapi/com/sun/star/view,\ XPrintJob \ XPrintJobBroadcaster \ XPrintJobListener \ - XPrintPreview \ XPrintSettingsSupplier \ XPrintable \ XPrintableBroadcaster \ diff --git a/offapi/com/sun/star/view/XPrintPreview.idl b/offapi/com/sun/star/view/XPrintPreview.idl deleted file mode 100644 index 73ffae6..0000000 --- a/offapi/com/sun/star/view/XPrintPreview.idl +++ /dev/null @@ -1,46 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ -#ifndef __com_sun_star_view_XPrintPreview_idl__ -#define __com_sun_star_view_XPrintPreview_idl__ - -#include <com/sun/star/uno/XInterface.idl> - - - -module com { module sun { module star { module view { - -/** @deprecated -*/ -published interface XPrintPreview: com::sun::star::uno::XInterface -{ - /** RowCount and ColumnCount contain the number of rows and columns - for pages displayed at any given time in this view. - - <p>The minimum value is 1. - */ - [attribute]short RowCount; - [attribute]short ColumnCount; -}; - - -}; }; }; }; - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/offapi/type_reference/types.rdb b/offapi/type_reference/types.rdb index c2a1662..2d43894 100644 Binary files a/offapi/type_reference/types.rdb and b/offapi/type_reference/types.rdb differ _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits