[Libreoffice-commits] core.git: vcl/jsdialog
Henry Castro (via logerrit)
logerrit at kemper.freedesktop.org
Sat Jan 9 19:21:40 UTC 2021
vcl/jsdialog/jsdialogbuilder.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 12d309940cd1aa26fb07c9dce2778e5811276190
Author: Henry Castro <hcastro at collabora.com>
AuthorDate: Fri Jan 8 16:47:47 2021 -0400
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Sat Jan 9 20:20:53 2021 +0100
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 at redhat.com>
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;
}
}
More information about the Libreoffice-commits
mailing list