diff options
author | Ocke Janssen <oj@openoffice.org> | 2002-03-26 07:55:04 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2002-03-26 07:55:04 +0000 |
commit | 507ccfe413538cb2c978f746382997cb5c204346 (patch) | |
tree | 1bb0223b6c5655be32125e1f65d4aa726bd80f09 /dbaccess/source/ui/querydesign/JoinTableView.cxx | |
parent | d63242e4f9904df1f10bbec72b6b77e0c8764028 (diff) |
#98347# recalc lines before invalidate
Diffstat (limited to 'dbaccess/source/ui/querydesign/JoinTableView.cxx')
-rw-r--r-- | dbaccess/source/ui/querydesign/JoinTableView.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/dbaccess/source/ui/querydesign/JoinTableView.cxx b/dbaccess/source/ui/querydesign/JoinTableView.cxx index f272e6ecf..9e209b8aa 100644 --- a/dbaccess/source/ui/querydesign/JoinTableView.cxx +++ b/dbaccess/source/ui/querydesign/JoinTableView.cxx @@ -2,9 +2,9 @@ * * $RCSfile: JoinTableView.cxx,v $ * - * $Revision: 1.29 $ + * $Revision: 1.30 $ * - * last change: $Author: oj $ $Date: 2002-03-26 07:52:10 $ + * last change: $Author: oj $ $Date: 2002-03-26 08:55:04 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1672,7 +1672,8 @@ void OJoinTableView::addConnection(OTableConnection* _pConnection,sal_Bool _bAdd m_pView->getController()->getTableConnectionData()->push_back(_pConnection->GetData()); } m_vTableConnection.push_back(_pConnection); - _pConnection->Invalidate(), + _pConnection->RecalcLines(); + _pConnection->Invalidate(); childCountChanged(m_vTableConnection.size() - 1); } // ----------------------------------------------------------------------------- |