diff options
Diffstat (limited to 'svx/source/form/fmmodel.cxx')
-rw-r--r-- | svx/source/form/fmmodel.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/form/fmmodel.cxx b/svx/source/form/fmmodel.cxx index 7765c47e75de..8d60b3f567e9 100644 --- a/svx/source/form/fmmodel.cxx +++ b/svx/source/form/fmmodel.cxx @@ -232,7 +232,7 @@ void FmFormModel::implSetOpenInDesignMode( bool _bOpenDesignMode, bool _bForce ) m_bOpenInDesignMode = _bOpenDesignMode; if ( m_pObjShell ) - m_pObjShell->SetModified( sal_True ); + m_pObjShell->SetModified( true ); } // no matter if we really did it or not - from now on, it does not count as defaulted anymore m_pImpl->bOpenInDesignIsDefaulted = sal_False; @@ -269,7 +269,7 @@ void FmFormModel::SetAutoControlFocus( bool _bAutoControlFocus ) if( _bAutoControlFocus != m_bAutoControlFocus ) { m_bAutoControlFocus = _bAutoControlFocus; - m_pObjShell->SetModified( sal_True ); + m_pObjShell->SetModified( true ); } } |