summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMatt K <mattkse@gmail.com>2023-12-12 20:16:12 -0600
committerCaolán McNamara <caolan.mcnamara@collabora.com>2023-12-21 21:17:42 +0100
commite760dcf43052212952191ccdadbfb677fea3b5b8 (patch)
tree735a34913309d80b38793999f78108d5153ea9a3 /include
parentba712e9a35179c480cdc6f9d600d79040a273d53 (diff)
tdf#153690 Prevent invisible dialogs in Calc Full Screen
This change just adds the flag "SfxChildWindowFlags::NEVERHIDE" to the info passed around so that the dialogs are not treated as invisible when executing SfxWorkWindow::ShowChildren_Impl. Change-Id: I35f0be94132cee438b3be9f4b4217208617a1e77 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160660 Tested-by: Jenkins Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com> Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'include')
-rw-r--r--include/sfx2/childwin.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sfx2/childwin.hxx b/include/sfx2/childwin.hxx
index 568abf3f2e21..ff12fe30b3d0 100644
--- a/include/sfx2/childwin.hxx
+++ b/include/sfx2/childwin.hxx
@@ -136,7 +136,7 @@ public:
static void RegisterChildWindow(SfxModule*, const SfxChildWinFactory&);
- static std::unique_ptr<SfxChildWindow> CreateChildWindow( sal_uInt16, vcl::Window*, SfxBindings*, SfxChildWinInfo const &);
+ static std::unique_ptr<SfxChildWindow> CreateChildWindow( sal_uInt16, vcl::Window*, SfxBindings*, SfxChildWinInfo &);
void SetHideNotDelete( bool bOn );
bool IsHideNotDelete() const;
bool IsVisible() const;