summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-01-24 13:37:59 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-01-24 13:37:59 +0100
commit80cec5faa5c69d4cf01dd7fc8a7e0dc1ed6f73ae (patch)
tree90d5f2241674fbc5f01c93cfedd71dc44d9a666b /chart2
parent26f6dadb4f8570d609557c004384a509d570b518 (diff)
AccStatisticsObject is apparently dead code
Change-Id: I4e04b13538d1242ea38d1400df0ced813171bc5e
Diffstat (limited to 'chart2')
-rw-r--r--chart2/qa/unoapi/sch.sce1
-rw-r--r--chart2/source/controller/accessibility/AccStatisticsObject.cxx52
-rw-r--r--chart2/source/controller/accessibility/AccStatisticsObject.hxx47
3 files changed, 0 insertions, 100 deletions
diff --git a/chart2/qa/unoapi/sch.sce b/chart2/qa/unoapi/sch.sce
index 54419b53a01d..54842bfd7ee5 100644
--- a/chart2/qa/unoapi/sch.sce
+++ b/chart2/qa/unoapi/sch.sce
@@ -25,7 +25,6 @@
#i79073 -o sch.AccGrid
#i79073 -o sch.AccLegend
#i79073 -o sch.AccLegendEntry
-#i79073 -o sch.AccStatisticsObject
#i79073 -o sch.AccTitle
#i79073 -o sch.AccWall
#i79073 -o sch.AccessibleDocumentView
diff --git a/chart2/source/controller/accessibility/AccStatisticsObject.cxx b/chart2/source/controller/accessibility/AccStatisticsObject.cxx
deleted file mode 100644
index fbdc16012c40..000000000000
--- a/chart2/source/controller/accessibility/AccStatisticsObject.cxx
+++ /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 .
- */
-
-#include "AccStatisticsObject.hxx"
-#include <vcl/svapp.hxx>
-#include <svx/svditer.hxx>
-
-namespace chart
-{
-
-AccStatisticsObject::AccStatisticsObject( const AccessibleElementInfo& rAccInfo )
- : AccessibleChartElement( rAccInfo, false/*NoChildren*/, true/*AlwaysTransparent*/ )
-
-{
- SolarMutexGuard aSolarGuard;
-}
-
-AccStatisticsObject::~AccStatisticsObject()
-{
-}
-
-OUString SAL_CALL AccStatisticsObject::getAccessibleName()
- throw (css::uno::RuntimeException)
-{
- return getToolTipText();
-}
-
-OUString SAL_CALL AccStatisticsObject::getImplementationName()
- throw (css::uno::RuntimeException)
-{
- return OUString( "StatisticsObject" );
-}
-
-} // namespace chart
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/chart2/source/controller/accessibility/AccStatisticsObject.hxx b/chart2/source/controller/accessibility/AccStatisticsObject.hxx
deleted file mode 100644
index 4688ae44bbc3..000000000000
--- a/chart2/source/controller/accessibility/AccStatisticsObject.hxx
+++ /dev/null
@@ -1,47 +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_CHART2_SOURCE_CONTROLLER_ACCESSIBILITY_ACCSTATISTICSOBJECT_HXX
-#define INCLUDED_CHART2_SOURCE_CONTROLLER_ACCESSIBILITY_ACCSTATISTICSOBJECT_HXX
-
-#include "AccessibleChartElement.hxx"
-
-#include "ObjectIdentifier.hxx"
-
-namespace chart
-{
-
-class AccStatisticsObject : public AccessibleChartElement
-{
-public:
- explicit AccStatisticsObject( const AccessibleElementInfo& rAccInfo );
-
- virtual ~AccStatisticsObject();
-
- // ________ XAccessibleContext ________
- virtual OUString SAL_CALL getAccessibleName() throw (css::uno::RuntimeException);
-
- // ________ XServiceInfo ________
- virtual OUString SAL_CALL getImplementationName() throw (css::uno::RuntimeException);
-};
-
-} // accessibility
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */