diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-01-23 08:50:57 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-01-23 18:38:39 +0000 |
commit | 5994aedd44bcf3fba93cdc33e33844231929afa8 (patch) | |
tree | 1eb56901ba9bb12d322d91f48f6f64fba14a4504 /offapi | |
parent | f8604f08ed5e07e50a65b5d35f3c0c18bf19044a (diff) |
[API CHANGE] sd::frame::Configuration does not need to be an UNO service
It does not ever appear to have been used as such, and it makes
no sense to be constructed externally.
Change-Id: Ia1a0cccdaeb19ded1197ad8aae701ac86dd3bb48
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145989
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/UnoApi_offapi.mk | 1 | ||||
-rw-r--r-- | offapi/com/sun/star/drawing/framework/Configuration.idl | 42 |
2 files changed, 0 insertions, 43 deletions
diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk index 4913d17747c6..0041655dac91 100644 --- a/offapi/UnoApi_offapi.mk +++ b/offapi/UnoApi_offapi.mk @@ -148,7 +148,6 @@ $(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,com/sun/star/drawing/framework BasicPaneFactory \ BasicToolBarFactory \ BasicViewFactory \ - Configuration \ ConfigurationController \ ModuleController \ ResourceId \ diff --git a/offapi/com/sun/star/drawing/framework/Configuration.idl b/offapi/com/sun/star/drawing/framework/Configuration.idl deleted file mode 100644 index cf21c44ae784..000000000000 --- a/offapi/com/sun/star/drawing/framework/Configuration.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 . - */ - -module com { module sun { module star { module drawing { module framework { - -/** This service provides the means for constructing new configurations. - - <p>Most likely use is the XConfigurationController::restoreConfiguration() - method.</p> - - @see XConfiguration - for a description of the configuration. -*/ -service Configuration - : XConfiguration -{ - /** Create an empty configuration. - <p>This should not be necessary very often. Changes to an - existing configuration are more likely.</p> - */ - create(); -}; - -}; }; }; }; }; // ::com::sun::star::drawing::framework - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |