summaryrefslogtreecommitdiff
path: root/offapi/com/sun
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-01-23 08:50:57 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-01-23 18:38:39 +0000
commit5994aedd44bcf3fba93cdc33e33844231929afa8 (patch)
tree1eb56901ba9bb12d322d91f48f6f64fba14a4504 /offapi/com/sun
parentf8604f08ed5e07e50a65b5d35f3c0c18bf19044a (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/com/sun')
-rw-r--r--offapi/com/sun/star/drawing/framework/Configuration.idl42
1 files changed, 0 insertions, 42 deletions
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: */