diff options
Diffstat (limited to 'vcl/qt5/QtXAccessible.cxx')
-rw-r--r-- | vcl/qt5/QtXAccessible.cxx | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/vcl/qt5/QtXAccessible.cxx b/vcl/qt5/QtXAccessible.cxx new file mode 100644 index 000000000..c8ef055a2 --- /dev/null +++ b/vcl/qt5/QtXAccessible.cxx @@ -0,0 +1,29 @@ +/* -*- 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> + +using namespace css::accessibility; +using namespace css::uno; + +QtXAccessible::QtXAccessible(Reference<XAccessible> xAccessible) + : m_xAccessible(xAccessible) +{ +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |