diff options
author | Kurt Zenker <kz@openoffice.org> | 2007-05-10 08:37:49 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2007-05-10 08:37:49 +0000 |
commit | 17050f57d8f89e3cf678a898dfe80ffac064fbaa (patch) | |
tree | 8ea146798135ad443d61c33133f1a9829d16fad4 /connectivity | |
parent | 8268e06b7b54aed4741dcc116869bc78e3f14cf4 (diff) |
INTEGRATION: CWS dba23a (1.4.74); FILE MERGED
2007/02/23 10:44:43 oj 1.4.74.1: #i74800# add new property to parse column needed by queryfilter dlg in dbaccess introduced by b6248060
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/commontools/propertyids.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/connectivity/source/commontools/propertyids.cxx b/connectivity/source/commontools/propertyids.cxx index d492053d8e9d..c8b658b126fc 100644 --- a/connectivity/source/commontools/propertyids.cxx +++ b/connectivity/source/commontools/propertyids.cxx @@ -4,9 +4,9 @@ * * $RCSfile: propertyids.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: obo $ $Date: 2006-09-17 02:03:38 $ + * last change: $Author: kz $ $Date: 2007-05-10 09:37:49 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -94,6 +94,7 @@ namespace dbtools const sal_Char* getPROPERTY_PRIVILEGES() { return "Privileges"; } const sal_Char* getPROPERTY_ID_HAVINGCLAUSE() { return "HavingClause"; } const sal_Char* getPROPERTY_ID_ISSIGNED() { return "IsSigned"; } + const sal_Char* getPROPERTY_ID_ISSEARCHABLE() { return "IsSearchable"; } //============================================================ //= error messages //============================================================ @@ -182,6 +183,7 @@ namespace dbtools case PROPERTY_ID_PRIVILEGES: { rtl_uString_newFromAscii(&pStr,getPROPERTY_PRIVILEGES() ); break; } case PROPERTY_ID_HAVINGCLAUSE: { rtl_uString_newFromAscii(&pStr,getPROPERTY_ID_HAVINGCLAUSE() ); break; } case PROPERTY_ID_ISSIGNED: { rtl_uString_newFromAscii(&pStr,getPROPERTY_ID_ISSIGNED() ); break; } + case PROPERTY_ID_ISSEARCHABLE: { rtl_uString_newFromAscii(&pStr,getPROPERTY_ID_ISSEARCHABLE() ); break; } } m_aPropertyMap[_nIndex] = pStr; |