diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-07-21 14:39:42 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-07-22 08:51:18 +0200 |
commit | 6d9e304d1748668cc25905945129095bd14fd1af (patch) | |
tree | b0ea02d427718d504da97f46d033cfabb2594937 /svl | |
parent | 818f8f13128ba78769b4f542ed1efef658de38d9 (diff) |
SfxItemSetHint is dead
since
commit 519876dffdc8c93710af543cc11332dab9a50c14
Author: Mike Kaganski <mike.kaganski@collabora.com>
Date: Tue Jul 18 23:45:47 2023 +0300
Cleanup SfxApplication::Get/SetOptions, and drop unused SIDs
Change-Id: I8d306bf6792630cfdaa0a0ac8b77730e1e1f0070
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154724
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svl')
-rw-r--r-- | svl/Library_svl.mk | 1 | ||||
-rw-r--r-- | svl/source/notify/isethint.cxx | 33 |
2 files changed, 0 insertions, 34 deletions
diff --git a/svl/Library_svl.mk b/svl/Library_svl.mk index ac6fe2d8130a..87024bbf499e 100644 --- a/svl/Library_svl.mk +++ b/svl/Library_svl.mk @@ -165,7 +165,6 @@ $(eval $(call gb_Library_add_exception_objects,svl,\ svl/source/misc/urihelper \ svl/source/notify/SfxBroadcaster \ svl/source/notify/broadcast \ - svl/source/notify/isethint \ svl/source/notify/listener \ svl/source/notify/lstner \ svl/source/numbers/currencytable \ diff --git a/svl/source/notify/isethint.cxx b/svl/source/notify/isethint.cxx deleted file mode 100644 index c0012377eccb..000000000000 --- a/svl/source/notify/isethint.cxx +++ /dev/null @@ -1,33 +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 . - */ - -#include <svl/isethint.hxx> -#include <svl/itemset.hxx> - -/** - * Copies the SfxItemSet passed as a parameter. - */ -SfxItemSetHint::SfxItemSetHint(const SfxItemSet& rItemSet) - : maItemSet(rItemSet.CloneAsValue()) -{ -} - -SfxItemSetHint::~SfxItemSetHint() {} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |