diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2007-11-21 15:07:46 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2007-11-21 15:07:46 +0000 |
commit | 745b1bbcf89183404bb87617b9669261dde81d88 (patch) | |
tree | 091aaf0dd84b4230054d93d7de4a021136576f20 /dbaccess/source/ui/misc/WCopyTable.cxx | |
parent | 7777c85155f67850d62097bf72f49a3736841cfc (diff) |
INTEGRATION: CWS dba24c (1.53.4); FILE MERGED
2007/10/15 10:48:06 oj 1.53.4.2: #i80916# #i80917# special handling for table formats which doesn't have a header definition
2007/10/12 12:27:14 oj 1.53.4.1: #i80917# append first line as first data row
Diffstat (limited to 'dbaccess/source/ui/misc/WCopyTable.cxx')
-rw-r--r-- | dbaccess/source/ui/misc/WCopyTable.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dbaccess/source/ui/misc/WCopyTable.cxx b/dbaccess/source/ui/misc/WCopyTable.cxx index 3e0c93e923bc..47d5d1849b54 100644 --- a/dbaccess/source/ui/misc/WCopyTable.cxx +++ b/dbaccess/source/ui/misc/WCopyTable.cxx @@ -4,9 +4,9 @@ * * $RCSfile: WCopyTable.cxx,v $ * - * $Revision: 1.53 $ + * $Revision: 1.54 $ * - * last change: $Author: hr $ $Date: 2007-09-26 14:51:47 $ + * last change: $Author: ihi $ $Date: 2007-11-21 16:07:46 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -169,7 +169,7 @@ OCopyTableWizard::OCopyTableWizard(Window * pParent, ,m_bDeleteSourceColumns(sal_True) ,m_eCreateStyle(WIZARD_DEF_DATA) ,m_ePressed( WIZARD_NONE ) - ,m_bCreatePrimaryColumn(sal_False) + ,m_bCreatePrimaryColumn(false) { DBG_CTOR(OCopyTableWizard,NULL); construct(); @@ -228,7 +228,7 @@ OCopyTableWizard::OCopyTableWizard(Window * pParent, ,m_sName(_rDefaultName) ,m_eCreateStyle(WIZARD_DEF_DATA) ,m_ePressed( WIZARD_NONE ) - ,m_bCreatePrimaryColumn(sal_False) + ,m_bCreatePrimaryColumn(false) { DBG_CTOR(OCopyTableWizard,NULL); construct(); @@ -483,7 +483,7 @@ IMPL_LINK( OCopyTableWizard, ImplOKHdl, OKButton*, EMPTYARG ) case RET_YES: { OCopyTable* pPage = static_cast<OCopyTable*>(GetPage(0)); - m_bCreatePrimaryColumn = sal_True; + m_bCreatePrimaryColumn = true; m_aKeyName = pPage->GetKeyName(); sal_Int32 nBreakPos2 = 0; CheckColumns(nBreakPos2); @@ -514,7 +514,7 @@ IMPL_LINK( OCopyTableWizard, ImplOKHdl, OKButton*, EMPTYARG ) return bFinish; } //------------------------------------------------------------------------ -sal_Bool OCopyTableWizard::isAutoincrementEnabled() const +bool OCopyTableWizard::isAutoincrementEnabled() const { DBG_CHKTHIS(OCopyTableWizard,NULL); return m_bCreatePrimaryColumn; |