summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/dlg/adtabdlg.cxx
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2002-10-07 12:09:48 +0000
committerOcke Janssen <oj@openoffice.org>2002-10-07 12:09:48 +0000
commit58b26608a764f02e6be13618a71c6baf5982cc6d (patch)
tree6b9277c8cef302b827793b202a78e52b74b06b5b /dbaccess/source/ui/dlg/adtabdlg.cxx
parent2d8d2de1b1f43b69434fe835d6ecb0fa7304d135 (diff)
#i3289# correct table name quoting so that in every situation the correct schema, catalog is used
Diffstat (limited to 'dbaccess/source/ui/dlg/adtabdlg.cxx')
-rw-r--r--dbaccess/source/ui/dlg/adtabdlg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/dlg/adtabdlg.cxx b/dbaccess/source/ui/dlg/adtabdlg.cxx
index 1eec8b8205f0..19889f7ff5b6 100644
--- a/dbaccess/source/ui/dlg/adtabdlg.cxx
+++ b/dbaccess/source/ui/dlg/adtabdlg.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: adtabdlg.cxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: oj $ $Date: 2002-08-19 07:43:45 $
+ * last change: $Author: oj $ $Date: 2002-10-07 13:06:34 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -193,7 +193,7 @@ void OAddTableDlg::AddTable()
::rtl::OUString aComposedName;
::dbtools::composeTableName(m_pTableView->getDesignView()->getController()->getConnection()->getMetaData(),
- aCatalog,aSchema,aTableName,aComposedName,sal_False);
+ aCatalog,aSchema,aTableName,aComposedName,sal_False,::dbtools::eInDataManipulation);
// aOrigTableName is used because AddTabWin would like to have this
// und das Ganze dem Container uebergeben
m_pTableView->AddTabWin( aComposedName,aTableName, TRUE );