summaryrefslogtreecommitdiff
path: root/forms/source/runtime/formoperations.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/runtime/formoperations.cxx')
-rw-r--r--forms/source/runtime/formoperations.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/forms/source/runtime/formoperations.cxx b/forms/source/runtime/formoperations.cxx
index 53dd2f41416a..5954c3bd20f9 100644
--- a/forms/source/runtime/formoperations.cxx
+++ b/forms/source/runtime/formoperations.cxx
@@ -620,7 +620,7 @@ namespace frm
case FormFeature::ReloadForm:
if ( m_xLoadableForm.is() )
{
- WaitObject aWO( NULL );
+ WaitObject aWO( nullptr );
m_xLoadableForm->reload();
// refresh all controls in the form (and sub forms) which can be refreshed
@@ -745,7 +745,7 @@ namespace frm
aValues[0] <<= OUString();
aValues[1] <<= OUString();
- WaitObject aWO( NULL );
+ WaitObject aWO( nullptr );
xProperties->setPropertyValues( aNames, aValues );
if ( m_xLoadableForm.is() )
@@ -763,7 +763,7 @@ namespace frm
m_xCursorProperties->setPropertyValue( PROPERTY_APPLYFILTER, makeAny( !bApplied ) );
// and reload
- WaitObject aWO( NULL );
+ WaitObject aWO( nullptr );
m_xLoadableForm->reload();
}
break;
@@ -1395,7 +1395,7 @@ namespace frm
{
OSL_PRECOND( m_xController.is(), "FormOperations::impl_getCurrentBoundField_nothrow: no controller -> no control!" );
if ( !m_xController.is() )
- return NULL;
+ return nullptr;
Reference< XPropertySet > xField;
try
@@ -1569,7 +1569,7 @@ namespace frm
impl_appendOrderByColumn_throw aAction(this, xBoundField, _bUp);
impl_doActionInSQLContext_throw(aAction, RID_STR_COULD_NOT_SET_ORDER );
- WaitObject aWO( NULL );
+ WaitObject aWO( nullptr );
try
{
m_xCursorProperties->setPropertyValue( PROPERTY_SORT, makeAny( m_xParser->getOrder() ) );
@@ -1635,7 +1635,7 @@ namespace frm
impl_appendFilterByColumn_throw aAction(this, xBoundField);
impl_doActionInSQLContext_throw( aAction, RID_STR_COULD_NOT_SET_FILTER );
- WaitObject aWO( NULL );
+ WaitObject aWO( nullptr );
try
{
m_xCursorProperties->setPropertyValue( PROPERTY_FILTER, makeAny( m_xParser->getFilter() ) );
@@ -1700,7 +1700,7 @@ namespace frm
if ( RET_OK == xDialog->execute() )
{
- WaitObject aWO( NULL );
+ WaitObject aWO( nullptr );
if ( _bFilter )
m_xCursorProperties->setPropertyValue( PROPERTY_FILTER, makeAny( m_xParser->getFilter() ) );
else