summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/inc
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-06-25 11:48:04 +0000
committerKurt Zenker <kz@openoffice.org>2008-06-25 11:48:04 +0000
commit290c59b332e4beabfd1d27eb5e19aa3a3897f5a7 (patch)
tree9b53431ef7d8b4613f67f482ac7306a64906cc72 /dbaccess/source/ui/inc
parent5595864cf894d43d4c56ddd5acdb43b18b11c448 (diff)
INTEGRATION: CWS dba30d (1.12.30); FILE MERGED
2008/05/29 11:25:58 fs 1.12.30.1: during #i80943#: refactoring: IController now passed around as reference, not as pointer
Diffstat (limited to 'dbaccess/source/ui/inc')
-rw-r--r--dbaccess/source/ui/inc/TableDesignView.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/ui/inc/TableDesignView.hxx b/dbaccess/source/ui/inc/TableDesignView.hxx
index 1fe4cf455e4e..1b58bc9f3ead 100644
--- a/dbaccess/source/ui/inc/TableDesignView.hxx
+++ b/dbaccess/source/ui/inc/TableDesignView.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: TableDesignView.hxx,v $
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
* This file is part of OpenOffice.org.
*
@@ -86,7 +86,7 @@ namespace dbaui
private:
::com::sun::star::lang::Locale m_aLocale;
OTableBorderWindow* m_pWin;
- OTableController* m_pController;
+ OTableController& m_rController;
ChildFocusState m_eChildFocus;
IClipboardTest* getActiveChild() const;
@@ -99,7 +99,7 @@ namespace dbaui
public:
OTableDesignView( Window* pParent,
const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >&,
- OTableController* _pController);
+ OTableController& _rController);
virtual ~OTableDesignView();
// window overloads
@@ -108,7 +108,7 @@ namespace dbaui
OTableEditorCtrl* GetEditorCtrl() const { return m_pWin ? m_pWin->GetEditorCtrl() : NULL; }
OTableFieldDescWin* GetDescWin() const { return m_pWin ? m_pWin->GetDescWin() : NULL; }
- OTableController* getController() const { return m_pController; }
+ OTableController& getController() const { return m_rController; }
::com::sun::star::lang::Locale getLocale() const { return m_aLocale;}