diff options
author | Henry Castro <hcastro@collabora.com> | 2021-01-08 16:47:47 -0400 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-01-09 20:20:53 +0100 |
commit | 12d309940cd1aa26fb07c9dce2778e5811276190 (patch) | |
tree | 7c5287d3d91739d0fe23be09dbf25f00493d6ae4 /vcl/jsdialog | |
parent | 251cfcdc8db951cfddeb960bb55da61117693d67 (diff) |
lok: fix initialization variable
It should initialize false
Change-Id: I67249bc8040688ee82bf12532178eb133f80b8e8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109021
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/jsdialog')
-rw-r--r-- | vcl/jsdialog/jsdialogbuilder.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/jsdialog/jsdialogbuilder.cxx b/vcl/jsdialog/jsdialogbuilder.cxx index c3e783452452..3352bac904d1 100644 --- a/vcl/jsdialog/jsdialogbuilder.cxx +++ b/vcl/jsdialog/jsdialogbuilder.cxx @@ -699,11 +699,11 @@ JSDialog::JSDialog(VclPtr<vcl::Window> aNotifierWindow, VclPtr<vcl::Window> aCon std::string sTypeOfJSON) : JSWidget<SalInstanceDialog, ::Dialog>(aNotifierWindow, aContentWindow, pDialog, pBuilder, bTakeOwnership, sTypeOfJSON) + , m_bNotifyCreated(false) { if (aNotifierWindow && aNotifierWindow->IsDisableIdleNotify()) { pDialog->AddEventListener(LINK(this, JSDialog, on_window_event)); - m_bNotifyCreated = false; } } @@ -892,11 +892,11 @@ JSMessageDialog::JSMessageDialog(::MessageDialog* pDialog, VclPtr<vcl::Window> a SalInstanceBuilder* pBuilder, bool bTakeOwnership) : SalInstanceMessageDialog(pDialog, pBuilder, bTakeOwnership) , JSDialogSender(m_xMessageDialog, aContentWindow, "dialog") + , m_bNotifyCreated(false) { if (aContentWindow && aContentWindow->IsDisableIdleNotify()) { pDialog->AddEventListener(LINK(this, JSMessageDialog, on_window_event)); - m_bNotifyCreated = false; } } |