diff options
-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: |