diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-05-16 20:58:05 +0100 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-05-19 09:59:18 +0200 |
commit | 669b95e6c99f9fc0ade7c23322b7142ef497133b (patch) | |
tree | ba0cce9b65c401893ce98690301fd0e80dcf2345 /sw/inc/viewsh.hxx | |
parent | 4cb6e54a3dcdd771ef76bd98b58f0bf1c4be4c45 (diff) |
Related: tdf#155349 drop SetEndActionByVirDev from the html import
EndActionByVirDev only arises in the non-mainstream use html web document case and precedes the introduction of DoubleBuffer. It would be helpful to have one less corner case to consider.
Change-Id: Ibb9064cf5b37b1806f90c24ad9fbf84a8e37c0c3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151854
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'sw/inc/viewsh.hxx')
-rw-r--r-- | sw/inc/viewsh.hxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sw/inc/viewsh.hxx b/sw/inc/viewsh.hxx index 3c8bc31b88c0..656e47347c02 100644 --- a/sw/inc/viewsh.hxx +++ b/sw/inc/viewsh.hxx @@ -137,8 +137,6 @@ class SW_DLLPUBLIC SwViewShell : public sw::Ring<SwViewShell> bool mbFrameView :1; // If true it is a (HTML-)Frame. bool mbEnableSmooth :1; // Disable SmoothScroll, e.g. for drag // of scrollbars. - bool mbEndActionByVirDev:1; // Paints from EndAction always via virtual device - // (e.g. when browsing). bool mbShowHeaderSeparator:1; ///< Flag to say that we are showing the header control bool mbShowFooterSeparator:1; ///< Flag to say that we are showing the footer control bool mbHeaderFooterEdit:1; ///< Flag to say that we are editing header or footer (according to the bShow(Header|Footer)Separator above) @@ -204,9 +202,6 @@ public: bool ActionPend() const { return mnStartAction != 0; } bool IsInEndAction() const { return mbInEndAction; } - void SetEndActionByVirDev( bool b ) { mbEndActionByVirDev = b; } - bool IsEndActionByVirDev() const { return mbEndActionByVirDev; } - // The ActionCount for all Shells is temporarily set to zero and then // restored at the RootFrame via UNO. void SetRestoreActions(sal_uInt16 nSet); |