Lines Matching refs:_rDialog
207 void impl_attributesToDialog_nothrow( OCopyTableWizard& _rDialog ) const;
210 void impl_dialogToAttributes_nothrow( const OCopyTableWizard& _rDialog );
602 void CopyTableWizard::impl_attributesToDialog_nothrow( OCopyTableWizard& _rDialog ) const in impl_attributesToDialog_nothrow()
605 _rDialog.setCreatePrimaryKey( m_aPrimaryKeyName.IsPresent, m_aPrimaryKeyName.Value ); in impl_attributesToDialog_nothrow()
606 _rDialog.setUseHeaderLine(m_bUseHeaderLineAsColumnNames); in impl_attributesToDialog_nothrow()
612 void CopyTableWizard::impl_dialogToAttributes_nothrow( const OCopyTableWizard& _rDialog ) in impl_dialogToAttributes_nothrow() argument
614 m_aPrimaryKeyName.IsPresent = _rDialog.shouldCreatePrimaryKey(); in impl_dialogToAttributes_nothrow()
616 m_aPrimaryKeyName.Value = _rDialog.getPrimaryKeyName(); in impl_dialogToAttributes_nothrow()
620 m_sDestinationTable = _rDialog.getName(); in impl_dialogToAttributes_nothrow()
622 m_nOperation = _rDialog.getOperation(); in impl_dialogToAttributes_nothrow()
623 m_bUseHeaderLineAsColumnNames = _rDialog.UseHeaderLine(); in impl_dialogToAttributes_nothrow()