diff options
author | Ocke Janssen <oj@openoffice.org> | 2002-02-06 07:31:04 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2002-02-06 07:31:04 +0000 |
commit | 943c227ce6ccd423f1d05768c504825395e170a8 (patch) | |
tree | 138984f4fd9f6d15b5ef3d57b1736f2845f62943 /dbaccess/source/ui/tabledesign/TableController.cxx | |
parent | 78029666b972020ced2c3c31fcb401d9159c707d (diff) |
#96957# new handling inserted for context menu and accessibility
Diffstat (limited to 'dbaccess/source/ui/tabledesign/TableController.cxx')
-rw-r--r-- | dbaccess/source/ui/tabledesign/TableController.cxx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/dbaccess/source/ui/tabledesign/TableController.cxx b/dbaccess/source/ui/tabledesign/TableController.cxx index 2b2e78a9ffe5..f25001d6ffd0 100644 --- a/dbaccess/source/ui/tabledesign/TableController.cxx +++ b/dbaccess/source/ui/tabledesign/TableController.cxx @@ -2,9 +2,9 @@ * * $RCSfile: TableController.cxx,v $ * - * $Revision: 1.61 $ + * $Revision: 1.62 $ * - * last change: $Author: fs $ $Date: 2002-01-24 17:42:19 $ + * last change: $Author: oj $ $Date: 2002-02-06 08:26:21 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -407,6 +407,13 @@ sal_Bool OTableController::doSaveDoc(sal_Bool _bSaveAs) return sal_False; } + // check if a column exists + // TODO +// ::std::find_if(m_vRowList.begin(),m_vRowList.end(), +// ::std::bind2nd(::std::not(::std::equal<OTableRow*>()),NULL)); + + ::std::vector<OTableRow*>::iterator aIter = m_vRowList.begin(); + Reference<XNameAccess> xTables; ::rtl::OUString sCatalog, sSchema; |