Tag: cws_src680_qiq User: fs Date: 06/05/10 04:02:52 Modified: /dba/dbaccess/source/ui/relationdesign/ RTableWindow.hxx, RelationTableView.cxx
Log: #i51143# base class (TableWindow) now also allows to hold a query - we ourself don't File Changes: Directory: /dba/dbaccess/source/ui/relationdesign/ ================================================== File [changed]: RTableWindow.hxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/relationdesign/RTableWindow.hxx?r1=1.2&r2=1.2.122.1 Delta lines: +5 -3 ------------------- --- RTableWindow.hxx 8 Sep 2005 16:36:00 -0000 1.2 +++ RTableWindow.hxx 10 May 2006 11:02:50 -0000 1.2.122.1 @@ -4,9 +4,9 @@ * * $RCSfile: RTableWindow.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.2.122.1 $ * - * last change: $Author: rt $ $Date: 2005/09/08 16:36:00 $ + * last change: $Author: fs $ $Date: 2006/05/10 11:02:50 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -53,6 +53,8 @@ The composed name or the window name. */ virtual ::rtl::OUString GetName() const { return GetComposedName(); } + + virtual bool allowQueries() const; }; } #endif //DBAUI_RELTABLEWINDOW_HXX File [changed]: RelationTableView.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/relationdesign/RelationTableView.cxx?r1=1.21&r2=1.21.10.1 Delta lines: +9 -4 ------------------- --- RelationTableView.cxx 19 Apr 2006 13:24:26 -0000 1.21 +++ RelationTableView.cxx 10 May 2006 11:02:50 -0000 1.21.10.1 @@ -4,9 +4,9 @@ * * $RCSfile: RelationTableView.cxx,v $ * - * $Revision: 1.21 $ + * $Revision: 1.21.10.1 $ * - * last change: $Author: hr $ $Date: 2006/04/19 13:24:26 $ + * last change: $Author: fs $ $Date: 2006/05/10 11:02:50 $ * * 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 @@ m_pCurrentlyTabConnData = NULL; } } + // ----------------------------------------------------------------------------- OTableWindow* ORelationTableView::createWindow(OTableWindowData* _pData) { return new ORelationTableWindow(this,_pData); } -// ----------------------------------------------------------------------------- +// ----------------------------------------------------------------------------- +bool ORelationTableWindow::allowQueries() const +{ + return false; +} --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
