summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui
diff options
context:
space:
mode:
authorFrank Schönheit <fs@openoffice.org>2001-08-15 12:43:04 +0000
committerFrank Schönheit <fs@openoffice.org>2001-08-15 12:43:04 +0000
commitb28c4e7fb0263a86210b5946207738a90fc057fc (patch)
tree5a192a8f9ca254d726464b77cf2158c548b2b64c /dbaccess/source/ui
parent709f5d6d109d693dffbcc594ba2d127737cbe6d3 (diff)
#88637# call the correct base class methods (previously skipped OSingleDocumentController
Diffstat (limited to 'dbaccess/source/ui')
-rw-r--r--dbaccess/source/ui/relationdesign/RelationController.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/ui/relationdesign/RelationController.cxx b/dbaccess/source/ui/relationdesign/RelationController.cxx
index ff735c813b84..1b87501aa04a 100644
--- a/dbaccess/source/ui/relationdesign/RelationController.cxx
+++ b/dbaccess/source/ui/relationdesign/RelationController.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: RelationController.cxx,v $
*
- * $Revision: 1.19 $
+ * $Revision: 1.20 $
*
- * last change: $Author: fs $ $Date: 2001-08-14 12:04:18 $
+ * last change: $Author: fs $ $Date: 2001-08-15 13:43:04 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -357,7 +357,7 @@ void ORelationController::Execute(sal_uInt16 _nId)
// -----------------------------------------------------------------------------
void SAL_CALL ORelationController::initialize( const Sequence< Any >& aArguments ) throw(Exception, RuntimeException)
{
- OGenericUnoController::initialize(aArguments);
+ OJoinController::initialize(aArguments);
// m_pWindow->initialize(m_xCurrentFrame);
@@ -446,7 +446,7 @@ void SAL_CALL ORelationController::initialize( const Sequence< Any >& aArguments
sal_Bool ORelationController::Construct(Window* pParent)
{
m_pView = new ORelationDesignView(pParent,this,m_xMultiServiceFacatory);
- OGenericUnoController::Construct(pParent);
+ OJoinController::Construct(pParent);
m_pView->Construct(NULL);
m_pView->Show();
return sal_True;