diff options
author | Ocke Janssen <oj@openoffice.org> | 2002-07-09 12:20:08 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2002-07-09 12:20:08 +0000 |
commit | 2fdcdfbfd1b7583b9602802e8695991e70529232 (patch) | |
tree | 62fee63c62f5a3754f0c9fcea0dc777ae3c9ff39 /dbaccess/source/ui/inc | |
parent | b5a5d7d8e60ef84316b645b67922ee19542359e0 (diff) |
#99921# check if datasource allows to check names
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(); }; |