summaryrefslogtreecommitdiff
path: root/sw/inc/viewopt.hxx
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2016-11-18 22:41:13 +0300
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-11-21 15:29:24 +0000
commitefbf399e773c6fc04496331b6ff1efde54bd4f9e (patch)
tree7c21538c696b3b331ba85b0d395f287097f02eb9 /sw/inc/viewopt.hxx
parent6f8f053a22a9010b50e6142443909bd31d5501df (diff)
related: tdf#90362: remove option from Formatting Aids
The option to ignore protection breaks expected functionality (protection, including sections protected with password), and may cause problems mentioned in original bug. This only should be used in specific recovery situations. Moving it from user-visible page to Expert Configuration. (Previously, changing it in Expert Configuration hadn't effect.) Change-Id: Ice2f20200584acd6b476e002eb783820fa823611 Reviewed-on: https://gerrit.libreoffice.org/30968 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'sw/inc/viewopt.hxx')
-rw-r--r--sw/inc/viewopt.hxx11
1 files changed, 1 insertions, 10 deletions
diff --git a/sw/inc/viewopt.hxx b/sw/inc/viewopt.hxx
index 63ba55c5fdee..39e30fdb0cb8 100644
--- a/sw/inc/viewopt.hxx
+++ b/sw/inc/viewopt.hxx
@@ -74,7 +74,6 @@ enum class ViewOptCoreFlags2 {
CursorInProt = 0x0008,
PdfExport = 0x0010,
Printing = 0x0020,
- IgnoreProt = 0x0040
};
namespace o3tl {
template<> struct typed_flags<ViewOptCoreFlags2> : is_typed_flags<ViewOptCoreFlags2, 0x007f> {};
@@ -358,15 +357,7 @@ public:
inline void SetCursorInProtectedArea(bool b)
{ b ? (m_nCore2Options |= ViewOptCoreFlags2::CursorInProt) : (m_nCore2Options &= ~ViewOptCoreFlags2::CursorInProt);}
- bool IsIgnoreProtectedArea() const
- {
- return bool(m_nCore2Options & ViewOptCoreFlags2::IgnoreProt);
- }
-
- void SetIgnoreProtectedArea(bool bSet)
- {
- bSet ? (m_nCore2Options |= ViewOptCoreFlags2::IgnoreProt) : (m_nCore2Options &= ~ViewOptCoreFlags2::IgnoreProt);
- }
+ static bool IsIgnoreProtectedArea();
inline bool IsPDFExport() const
{return bool(m_nCore2Options & ViewOptCoreFlags2::PdfExport); }