diff options
author | Ocke Janssen <oj@openoffice.org> | 2002-07-25 06:02:20 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2002-07-25 06:02:20 +0000 |
commit | fe7f7274f35e73a61db8443e66386cb853de421b (patch) | |
tree | 7c8beabe6ab1b85e3ef58f8b42d56fa38308da87 /dbaccess | |
parent | 4b24fed451dadc24045a6389d8228b46d556f1ed (diff) |
#95146# set auto creation prop
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/tabledesign/FieldDescriptions.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/ui/tabledesign/FieldDescriptions.cxx b/dbaccess/source/ui/tabledesign/FieldDescriptions.cxx index 955e6795409e..83e80a28bd11 100644 --- a/dbaccess/source/ui/tabledesign/FieldDescriptions.cxx +++ b/dbaccess/source/ui/tabledesign/FieldDescriptions.cxx @@ -2,9 +2,9 @@ * * $RCSfile: FieldDescriptions.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: oj $ $Date: 2002-07-22 12:11:42 $ + * last change: $Author: oj $ $Date: 2002-07-25 07:02:20 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -190,8 +190,8 @@ OFieldDescription::OFieldDescription(const Reference< XPropertySet >& xAffectedC SetDescription(::comphelper::getString(xAffectedCol->getPropertyValue(PROPERTY_DESCRIPTION))); if(xPropSetInfo->hasPropertyByName(PROPERTY_DEFAULTVALUE)) SetDefaultValue(::comphelper::getString(xAffectedCol->getPropertyValue(PROPERTY_DEFAULTVALUE))); - if(xPropSetInfo->hasPropertyByName(PROPERTY_AUTOINCREMENTVALUE)) - SetAutoIncrementValue(::comphelper::getString(xAffectedCol->getPropertyValue(PROPERTY_AUTOINCREMENTVALUE))); + if(xPropSetInfo->hasPropertyByName(PROPERTY_AUTOINCREMENTCREATION)) + SetAutoIncrementValue(::comphelper::getString(xAffectedCol->getPropertyValue(PROPERTY_AUTOINCREMENTCREATION))); if(xPropSetInfo->hasPropertyByName(PROPERTY_TYPE)) SetTypeValue(::comphelper::getINT32(xAffectedCol->getPropertyValue(PROPERTY_TYPE))); if(xPropSetInfo->hasPropertyByName(PROPERTY_PRECISION)) |