Lines Matching refs:_rDialog
205 void impl_attributesToDialog_nothrow( OCopyTableWizard& _rDialog ) const;
208 void impl_dialogToAttributes_nothrow( const OCopyTableWizard& _rDialog );
600 void CopyTableWizard::impl_attributesToDialog_nothrow( OCopyTableWizard& _rDialog ) const in impl_attributesToDialog_nothrow()
603 _rDialog.setCreatePrimaryKey( m_aPrimaryKeyName.IsPresent, m_aPrimaryKeyName.Value ); in impl_attributesToDialog_nothrow()
604 _rDialog.setUseHeaderLine(m_bUseHeaderLineAsColumnNames); in impl_attributesToDialog_nothrow()
610 void CopyTableWizard::impl_dialogToAttributes_nothrow( const OCopyTableWizard& _rDialog ) in impl_dialogToAttributes_nothrow() argument
612 m_aPrimaryKeyName.IsPresent = _rDialog.shouldCreatePrimaryKey(); in impl_dialogToAttributes_nothrow()
614 m_aPrimaryKeyName.Value = _rDialog.getPrimaryKeyName(); in impl_dialogToAttributes_nothrow()
618 m_sDestinationTable = _rDialog.getName(); in impl_dialogToAttributes_nothrow()
620 m_nOperation = _rDialog.getOperation(); in impl_dialogToAttributes_nothrow()
621 m_bUseHeaderLineAsColumnNames = _rDialog.UseHeaderLine(); in impl_dialogToAttributes_nothrow()