From ff61fef0a43bf8d2cfce70515774286177e33e17 Mon Sep 17 00:00:00 2001 From: James Date: Tue, 29 May 2018 15:55:13 -0400 Subject: [PATCH] reverted incorrect update function name in signal slot connection --- limereport/scriptbrowser/lrscriptbrowser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/limereport/scriptbrowser/lrscriptbrowser.cpp b/limereport/scriptbrowser/lrscriptbrowser.cpp index 75f5842..98d0568 100644 --- a/limereport/scriptbrowser/lrscriptbrowser.cpp +++ b/limereport/scriptbrowser/lrscriptbrowser.cpp @@ -58,7 +58,7 @@ void ScriptBrowser::setReportEditor(ReportDesignWidget* report) { m_report=report; connect(m_report,SIGNAL(cleared()),this,SLOT(slotClear())); - connect(m_report,SIGNAL(loadFinished()),this,SLOT(slotUpdate())); + connect(m_report,SIGNAL(loaded()),this,SLOT(slotUpdate())); #ifdef HAVE_UI_LOADER connect(m_report->scriptContext(), SIGNAL(dialogAdded(QString)), this, SLOT(slotDialogAdded(QString))); #endif