diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2003-04-17 12:16:13 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2003-04-17 12:16:13 +0000 |
commit | 8fdb24d3accdd9cdb1d0c2f10fed53136d1a5ce7 (patch) | |
tree | d96f684f3af5ede014f6f60a8b576a8b7bc3675f | |
parent | b82439dca46f4cbd30a8c535720e14c11334f864 (diff) |
INTEGRATION: CWS os8 (1.20.82); FILE MERGED
2003/04/10 17:04:37 dvo 1.20.82.1: #108730# load/save IsVisible property (text:display=none/value) for database fields
-rw-r--r-- | xmloff/inc/txtfldi.hxx | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/xmloff/inc/txtfldi.hxx b/xmloff/inc/txtfldi.hxx index cc2f3e076eea..29a3df74fd4d 100644 --- a/xmloff/inc/txtfldi.hxx +++ b/xmloff/inc/txtfldi.hxx @@ -2,9 +2,9 @@ * * $RCSfile: txtfldi.hxx,v $ * - * $Revision: 1.20 $ + * $Revision: 1.21 $ * - * last change: $Author: dvo $ $Date: 2002-11-21 17:32:25 $ + * last change: $Author: vg $ $Date: 2003-04-17 13:16:13 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -525,6 +525,7 @@ class XMLDatabaseFieldImportContext : public XMLTextFieldImportContext const ::rtl::OUString sPropertyDatabaseName; const ::rtl::OUString sPropertyTableName; const ::rtl::OUString sPropertyDataCommandType; + const ::rtl::OUString sPropertyIsVisible; ::rtl::OUString sDatabaseName; ::rtl::OUString sTableName; @@ -532,6 +533,10 @@ class XMLDatabaseFieldImportContext : public XMLTextFieldImportContext sal_Int32 nCommandType; sal_Bool bCommandTypeOK; + sal_Bool bDisplay; + bool bDisplayOK; + bool bUseDisplay; + protected: sal_Bool bDatabaseOK; sal_Bool bTableOK; @@ -541,7 +546,8 @@ protected: XMLTextImportHelper& rHlp, const sal_Char* pServiceName, sal_uInt16 nPrfx, - const ::rtl::OUString& sLocalName); + const ::rtl::OUString& sLocalName, + bool bUseDisplay ); public: |