summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-12-01 20:11:44 +0000
committerCaolán McNamara <caolanm@redhat.com>2019-12-02 09:53:01 +0100
commit48a676a1639f9c8aef734c47b457108d1712b79d (patch)
tree8f3dc547784b892c62fa5ed5dfbfd1e169905a22 /forms
parent16758bd6533f76e9e72775405ecfc9f38a659155 (diff)
use weld::WaitObject with an explicit target
Change-Id: I5ef322e4c17a1d643fa39968c92a39cf614ce23f Reviewed-on: https://gerrit.libreoffice.org/84168 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'forms')
-rw-r--r--forms/source/runtime/formoperations.cxx13
1 files changed, 6 insertions, 7 deletions
diff --git a/forms/source/runtime/formoperations.cxx b/forms/source/runtime/formoperations.cxx
index 01107afd7e2c..7112a46b118f 100644
--- a/forms/source/runtime/formoperations.cxx
+++ b/forms/source/runtime/formoperations.cxx
@@ -53,7 +53,6 @@
#include <vcl/svapp.hxx>
#include <vcl/stdtext.hxx>
#include <vcl/weld.hxx>
-#include <vcl/waitobj.hxx>
#include <tools/diagnose_ex.h>
#include <comphelper/container.hxx>
#include <comphelper/property.hxx>
@@ -607,7 +606,7 @@ namespace frm
case FormFeature::ReloadForm:
if ( m_xLoadableForm.is() )
{
- WaitObject aWO( nullptr );
+ weld::WaitObject aWO(Application::GetFrameWeld(GetDialogParent()));
m_xLoadableForm->reload();
// refresh all controls in the form (and sub forms) which can be refreshed
@@ -734,7 +733,7 @@ namespace frm
aValues[1] <<= OUString();
aValues[2] <<= OUString();
- WaitObject aWO( nullptr );
+ weld::WaitObject aWO(Application::GetFrameWeld(GetDialogParent()));
xProperties->setPropertyValues( aNames, aValues );
if ( m_xLoadableForm.is() )
@@ -752,7 +751,7 @@ namespace frm
m_xCursorProperties->setPropertyValue( PROPERTY_APPLYFILTER, makeAny( !bApplied ) );
// and reload
- WaitObject aWO( nullptr );
+ weld::WaitObject aWO(Application::GetFrameWeld(GetDialogParent()));
m_xLoadableForm->reload();
}
break;
@@ -1557,7 +1556,7 @@ namespace frm
impl_appendOrderByColumn_throw aAction(this, xBoundField, _bUp);
impl_doActionInSQLContext_throw(aAction, RID_STR_COULD_NOT_SET_ORDER );
- WaitObject aWO( nullptr );
+ weld::WaitObject aWO(Application::GetFrameWeld(GetDialogParent()));
try
{
m_xCursorProperties->setPropertyValue( PROPERTY_SORT, makeAny( m_xParser->getOrder() ) );
@@ -1628,7 +1627,7 @@ namespace frm
impl_appendFilterByColumn_throw aAction(this, m_xParser, xBoundField);
impl_doActionInSQLContext_throw( aAction, RID_STR_COULD_NOT_SET_FILTER );
- WaitObject aWO( nullptr );
+ weld::WaitObject aWO(Application::GetFrameWeld(GetDialogParent()));
try
{
m_xCursorProperties->setPropertyValue( PROPERTY_FILTER, makeAny( m_xParser->getFilter() ) );
@@ -1715,7 +1714,7 @@ namespace frm
if ( RET_OK == xDialog->execute() )
{
- WaitObject aWO( nullptr );
+ weld::WaitObject aWO(Application::GetFrameWeld(xDialogParent));
if ( _bFilter )
{
m_xCursorProperties->setPropertyValue( PROPERTY_FILTER, makeAny( m_xParser->getFilter() ) );