summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2007-09-26 13:49:39 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2007-09-26 13:49:39 +0000
commit9aae75a7782525e6ac22c635c3c805e4a4c85d7a (patch)
tree395710aeffcc359c7bebda4beb4c011f6749509d /dbaccess/source/ui
parentee6b3b5cda22e2e72099f4732561d4eb2caf8569 (diff)
INTEGRATION: CWS dba24a (1.17.170); FILE MERGED
2007/07/23 11:59:02 fs 1.17.170.1: when pasting tables, use a meaningful default in the wizard, as indicated by the current selection Issue number: #i18907# Submitted by: dyf@openoffice.org Reviewed by: frank.schoenheit@sun.com
Diffstat (limited to 'dbaccess/source/ui')
-rw-r--r--dbaccess/source/ui/inc/DExport.hxx14
1 files changed, 11 insertions, 3 deletions
diff --git a/dbaccess/source/ui/inc/DExport.hxx b/dbaccess/source/ui/inc/DExport.hxx
index cd32c8729302..d92b688b493c 100644
--- a/dbaccess/source/ui/inc/DExport.hxx
+++ b/dbaccess/source/ui/inc/DExport.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: DExport.hxx,v $
*
- * $Revision: 1.17 $
+ * $Revision: 1.18 $
*
- * last change: $Author: hr $ $Date: 2006-06-20 03:11:09 $
+ * last change: $Author: hr $ $Date: 2007-09-26 14:49:39 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -122,7 +122,10 @@ namespace dbaui
::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory> m_xFactory;
SvNumberFormatter* m_pFormatter;
-
+ //dyf add 2006/06/01
+ //for save the selected tablename
+ ::rtl::OUString m_sDefaultTableName;
+ //dyf add end
String m_sTextToken; // Zellen Inhalt
String m_sNumToken; /// SDNUM value
String m_sValToken; /// SDVAL value
@@ -184,6 +187,11 @@ namespace dbaui
sal_Bool _bAutoIncrementEnabled);
void SetColumnTypes(const TColumnVector* rList,const OTypeInfoMap* _pInfoMap);
+
+ //dyf add 20070601
+ inline void SetTableName(const ::rtl::OUString &_sTableName){ m_sDefaultTableName = _sTableName ; }
+ //dyf add end
+
virtual void release() = 0;
void enableCheckOnly() { m_bCheckOnly = sal_True; }