diff options
author | heiko tietze <tietze.heiko@gmail.com> | 2018-05-07 10:06:38 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-05-09 08:52:57 +0200 |
commit | 77ae49e2e22bc4094f26932286404e50ec1c9c36 (patch) | |
tree | eb7cad268603437d966ee363d567b78f8c58fb32 /sw/source | |
parent | 96b08e181cdefce24ddc25fdbf0648856cbb7b0f (diff) |
tdf#117437 - Console error message about ShowInlineTooltips
Issue introduced with https://gerrit.libreoffice.org/#/c/52586/
Change-Id: I6959a645da1df9e956aecc8d923cfd6a9e0b7089
Reviewed-on: https://gerrit.libreoffice.org/53928
Reviewed-by: Heiko Tietze <tietze.heiko@gmail.com>
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/uibase/uno/unomod.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sw/source/uibase/uno/unomod.cxx b/sw/source/uibase/uno/unomod.cxx index c33f0b9f5f49..f2a5456a4aa4 100644 --- a/sw/source/uibase/uno/unomod.cxx +++ b/sw/source/uibase/uno/unomod.cxx @@ -833,6 +833,7 @@ void SwXViewSettings::_getSingleValue( const comphelper::PropertyInfo & rInfo, u case HANDLE_VIEWSET_TEXT_BOUNDARIES : bBoolVal = SwViewOption::IsDocBoundaries(); break; case HANDLE_VIEWSET_SMOOTH_SCROLLING : bBoolVal = mpConstViewOption->IsSmoothScroll(); break; case HANDLE_VIEWSET_SHOW_CONTENT_TIPS : bBoolVal = mpConstViewOption->IsShowContentTips(); break; + case HANDLE_VIEWSET_INLINECHANGES_TIPS : bBoolVal = mpConstViewOption->IsShowInlineTooltips(); break; case HANDLE_VIEWSET_IS_RASTER_VISIBLE : bBoolVal = mpConstViewOption->IsGridVisible(); break; case HANDLE_VIEWSET_IS_SNAP_TO_RASTER : bBoolVal = mpConstViewOption->IsSnap(); break; case HANDLE_VIEWSET_SCROLLBAR_TIPS : bBoolVal = mpConstViewOption->IsShowScrollBarTips(); break; |