diff options
Diffstat (limited to 'dbaccess/source/ui/inc')
-rw-r--r-- | dbaccess/source/ui/inc/FieldDescControl.hxx | 5 | ||||
-rw-r--r-- | dbaccess/source/ui/inc/WTypeSelect.hxx | 7 |
2 files changed, 7 insertions, 5 deletions
diff --git a/dbaccess/source/ui/inc/FieldDescControl.hxx b/dbaccess/source/ui/inc/FieldDescControl.hxx index 1ca9de687f7c..acc3031a8443 100644 --- a/dbaccess/source/ui/inc/FieldDescControl.hxx +++ b/dbaccess/source/ui/inc/FieldDescControl.hxx @@ -2,9 +2,9 @@ * * $RCSfile: FieldDescControl.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: oj $ $Date: 2001-07-16 07:50:32 $ + * last change: $Author: oj $ $Date: 2002-07-09 13:18:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -239,6 +239,7 @@ namespace dbaui virtual void Resize(); virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDatabaseMetaData> getMetaData() = 0; + virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection> getConnection() = 0; protected: void implFocusLost(Window* _pWhich); }; diff --git a/dbaccess/source/ui/inc/WTypeSelect.hxx b/dbaccess/source/ui/inc/WTypeSelect.hxx index 4836b024a91f..99c4cc92596a 100644 --- a/dbaccess/source/ui/inc/WTypeSelect.hxx +++ b/dbaccess/source/ui/inc/WTypeSelect.hxx @@ -2,9 +2,9 @@ * * $RCSfile: WTypeSelect.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: oj $ $Date: 2002-02-06 07:44:03 $ + * last change: $Author: oj $ $Date: 2002-07-09 13:18:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -110,9 +110,10 @@ namespace dbaui : OFieldDescControl(pParent,pHelpBar) { }; OWizTypeSelectControl(Window* pParent, const ResId& rResId,OTableDesignHelpBar* pHelpBar=NULL) : OFieldDescControl(pParent,rResId,pHelpBar) { }; - ~OWizTypeSelectControl(); + virtual ~OWizTypeSelectControl(); virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDatabaseMetaData> getMetaData(); + virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection> getConnection(); }; |