1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
10 #include <sal/config.h>
12 #include <com/sun/star/lang/XComponent.hpp>
13 #include <com/sun/star/linguistic2/ProofreadingIterator.hpp>
14 #include <com/sun/star/linguistic2/XProofreadingIterator.hpp>
15 #include <com/sun/star/uno/Reference.hxx>
16 #include <com/sun/star/uno/XComponentContext.hpp>
17 #include <vcl/svapp.hxx>
19 #include <proofreadingiterator.hxx>
23 css::uno::Reference
<css::linguistic2::XProofreadingIterator
> instance
;
24 bool disposed
= false;
26 void doDispose(css::uno::Reference
<css::linguistic2::XProofreadingIterator
> const& inst
)
28 css::uno::Reference
<css::lang::XComponent
> comp(inst
, css::uno::UNO_QUERY
);
37 css::uno::Reference
<css::linguistic2::XProofreadingIterator
>
38 sw::proofreadingiterator::get(css::uno::Reference
<css::uno::XComponentContext
> const& context
)
40 css::uno::Reference
<css::linguistic2::XProofreadingIterator
> inst(
41 css::linguistic2::ProofreadingIterator::create(context
));
55 void sw::proofreadingiterator::dispose()
57 css::uno::Reference
<css::linguistic2::XProofreadingIterator
> inst
;
67 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */