diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2022-10-20 22:33:22 +0200 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2022-11-15 00:03:41 +0100 |
commit | 0b96a1747fc3f96ca70fd159594fe1a478369da0 (patch) | |
tree | 754c9203429eb03fad90088634ade9c33f118a7b /sw/inc/doc.hxx | |
parent | 7d750720b667a178b273db4e1f280a756583d74f (diff) |
sw: add online accessibility check implementation
Change-Id: Ic68aa91b1cbf23ac305ad4e361c56b91556757ee
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141604
Tested-by: Tomaž Vajngerl <quikee@gmail.com>
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'sw/inc/doc.hxx')
-rw-r--r-- | sw/inc/doc.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx index de5ec6112a00..80aa234cc6e3 100644 --- a/sw/inc/doc.hxx +++ b/sw/inc/doc.hxx @@ -163,6 +163,7 @@ namespace sw { class DocumentStylePoolManager; class DocumentExternalDataManager; class GrammarContact; + class OnlineAccessibilityCheck; } namespace com::sun::star { @@ -285,6 +286,7 @@ class SW_DLLPUBLIC SwDoc final document for a faster formatting */ std::unique_ptr<sw::GrammarContact> mpGrammarContact; //< for grammar checking in paragraphs during editing + std::unique_ptr<sw::OnlineAccessibilityCheck> mpOnlineAccessibilityCheck; css::uno::Reference< css::script::vba::XVBAEventProcessor > mxVbaEvents; css::uno::Reference< ooo::vba::word::XFind > mxVbaFind; @@ -1562,6 +1564,10 @@ public: bool ContainsHiddenChars() const; std::unique_ptr<sw::GrammarContact> const& getGrammarContact() const { return mpGrammarContact; } + std::unique_ptr<sw::OnlineAccessibilityCheck> const& getOnlineAccessibilityCheck() const + { + return mpOnlineAccessibilityCheck; + } /** Marks/Unmarks a list level of a certain list |