summaryrefslogtreecommitdiff
path: root/dbaccess/source
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-07-10 14:46:10 +0000
committerOliver Bolte <obo@openoffice.org>2006-07-10 14:46:10 +0000
commite25b5d85f2b49da9e268cf0b23e38b268a7c27ab (patch)
tree88fc322f0b888c7d33ced988b5d69ec8145b821a /dbaccess/source
parent7bcafad7534a20bbb5c146d811d6ac4486fcb623 (diff)
INTEGRATION: CWS qiq (1.21.10); FILE MERGED
2006/06/27 12:59:01 fs 1.21.10.2: RESYNC: (1.21-1.22); FILE MERGED 2006/05/10 11:02:50 fs 1.21.10.1: #i51143# base class (TableWindow) now also allows to hold a query - we ourself don't
Diffstat (limited to 'dbaccess/source')
-rw-r--r--dbaccess/source/ui/relationdesign/RelationTableView.cxx11
1 files changed, 8 insertions, 3 deletions
diff --git a/dbaccess/source/ui/relationdesign/RelationTableView.cxx b/dbaccess/source/ui/relationdesign/RelationTableView.cxx
index 846ca214657f..64d82028361c 100644
--- a/dbaccess/source/ui/relationdesign/RelationTableView.cxx
+++ b/dbaccess/source/ui/relationdesign/RelationTableView.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: RelationTableView.cxx,v $
*
- * $Revision: 1.22 $
+ * $Revision: 1.23 $
*
- * last change: $Author: hr $ $Date: 2006-06-20 03:31:32 $
+ * last change: $Author: obo $ $Date: 2006-07-10 15:46:10 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -510,10 +510,15 @@ void ORelationTableView::lookForUiActivities()
m_pCurrentlyTabConnData = NULL;
}
}
+
// -----------------------------------------------------------------------------
OTableWindow* ORelationTableView::createWindow(OTableWindowData* _pData)
{
return new ORelationTableWindow(this,_pData);
}
-// -----------------------------------------------------------------------------
+// -----------------------------------------------------------------------------
+bool ORelationTableWindow::allowQueries() const
+{
+ return false;
+}