54a97eb9dd
Change-Id: I9ddb786eb88213c53cf53067ced6899ca40ac6e8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137000 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
30 lines
799 B
C++
30 lines
799 B
C++
/* -*- 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/.
|
|
*/
|
|
|
|
#include <QtXAccessible.hxx>
|
|
#include <QtXAccessible.moc>
|
|
|
|
#include <QtFrame.hxx>
|
|
#include <QtTools.hxx>
|
|
#include <QtWidget.hxx>
|
|
|
|
#include <com/sun/star/accessibility/XAccessible.hpp>
|
|
|
|
#include <sal/log.hxx>
|
|
#include <utility>
|
|
|
|
using namespace css::accessibility;
|
|
using namespace css::uno;
|
|
|
|
QtXAccessible::QtXAccessible(Reference<XAccessible> xAccessible)
|
|
: m_xAccessible(std::move(xAccessible))
|
|
{
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|