summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-06-24 13:09:42 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-06-24 22:16:24 +0200
commit7e4a3eee79b49216696f8c51bf833eee3e06a803 (patch)
tree9a6ceee7e11d2ceeb402303e4cf696c86defd05a /sc/inc
parentefa19c9a5004699d844d108e2bf0dce845d48959 (diff)
loplugin:unusedmethods
Change-Id: Ib724da1f07be9e8f4d0d505f7f2886990cab661f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97022 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/AccessibleGlobal.hxx57
1 files changed, 0 insertions, 57 deletions
diff --git a/sc/inc/AccessibleGlobal.hxx b/sc/inc/AccessibleGlobal.hxx
deleted file mode 100644
index df699e462937..000000000000
--- a/sc/inc/AccessibleGlobal.hxx
+++ /dev/null
@@ -1,57 +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 INCLUDED_SC_INC_ACCESSIBLEGLOBAL_HXX
-#define INCLUDED_SC_INC_ACCESSIBLEGLOBAL_HXX
-
-#include <com/sun/star/accessibility/XAccessibleStateSet.hpp>
-#include <cppuhelper/implbase.hxx>
-
-#include <set>
-
-/// Generic XAccessibleStateSet implementation.
-class ScAccessibleStateSet final : public ::cppu::WeakImplHelper< css::accessibility::XAccessibleStateSet >
-{
-public:
- ScAccessibleStateSet();
- virtual ~ScAccessibleStateSet() override;
-
- // XAccessibleStateSet
-
- virtual sal_Bool SAL_CALL isEmpty() override;
-
- virtual sal_Bool SAL_CALL contains(sal_Int16 nState) override;
-
- virtual sal_Bool SAL_CALL containsAll(
- const css::uno::Sequence<sal_Int16>& aStateSet) override;
-
- virtual css::uno::Sequence<sal_Int16> SAL_CALL getStates() override;
-
- // Non-UNO Methods
-
- void insert(sal_Int16 nState);
- void clear();
-
-private:
- ::std::set<sal_Int16> maStates;
-};
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */