calc: on editing invalidation of view with different zoom is wrong
[LibreOffice.git] / vcl / qt5 / QtXAccessible.cxx
blob25c0c5e9e12012a21e065d33e787042e6a8e5915
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #include <QtXAccessible.hxx>
11 #include <QtXAccessible.moc>
13 #include <QtFrame.hxx>
14 #include <QtTools.hxx>
15 #include <QtWidget.hxx>
17 #include <com/sun/star/accessibility/XAccessible.hpp>
19 #include <sal/log.hxx>
20 #include <utility>
22 using namespace css::accessibility;
23 using namespace css::uno;
25 QtXAccessible::QtXAccessible(Reference<XAccessible> xAccessible)
26 : m_xAccessible(std::move(xAccessible))
30 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */