summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/inc/DExport.hxx
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2002-05-28 07:08:11 +0000
committerOcke Janssen <oj@openoffice.org>2002-05-28 07:08:11 +0000
commit0aee7e5d6ffab67e517922d43b1c9dbb8e04a311 (patch)
treed01e6e7fa909542f676ebda07670d0840c276bde /dbaccess/source/ui/inc/DExport.hxx
parent06f536986686db7ebddfd3836fdea2187e8122df (diff)
#96792# new methods for pasting tables
Diffstat (limited to 'dbaccess/source/ui/inc/DExport.hxx')
-rw-r--r--dbaccess/source/ui/inc/DExport.hxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/dbaccess/source/ui/inc/DExport.hxx b/dbaccess/source/ui/inc/DExport.hxx
index 3354c6b79947..00b15f5ef5cd 100644
--- a/dbaccess/source/ui/inc/DExport.hxx
+++ b/dbaccess/source/ui/inc/DExport.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: DExport.hxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: oj $ $Date: 2002-05-23 11:07:09 $
+ * last change: $Author: oj $ $Date: 2002-05-28 08:05:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -156,6 +156,7 @@ namespace dbaui
sal_Bool m_bDontAskAgain;// Falls beim Einf"ugen ein Fehler auftritt, soll die Fehlermeldung nicht
sal_Bool m_bIsAutoIncrement; // if PKey is set by user
sal_Bool m_bFoundTable; // set to true when a table was found
+ sal_Bool m_bCheckOnly;
virtual sal_Bool CreateTable(int nToken) = 0;
@@ -197,6 +198,9 @@ namespace dbaui
void SetColumnTypes(const TColumnVector* rList,const OTypeInfoMap* _pInfoMap);
String ShortenFieldName( const String& rName, xub_StrLen nNewLength, const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess>& rDestList );
virtual void release() = 0;
+
+ void enableCheckOnly() { m_bCheckOnly = sal_True; }
+ sal_Bool isCheckEnabled() const { return m_bCheckOnly; }
};
}