diff options
author | Ocke Janssen <oj@openoffice.org> | 2001-08-15 12:13:06 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2001-08-15 12:13:06 +0000 |
commit | 1acbe05d887df4ab914c84944a29989f44c44c6c (patch) | |
tree | b242be62adce6b24b71f2ff1419b30a501a4621e /dbaccess/source | |
parent | 99871e3ad69465868819c1a951a23c1e3c99c44c (diff) |
#88644# insert some DBG's and fix getFocus calls
Diffstat (limited to 'dbaccess/source')
-rw-r--r-- | dbaccess/source/ui/inc/QueryTextView.hxx | 8 | ||||
-rw-r--r-- | dbaccess/source/ui/inc/QueryViewSwitch.hxx | 5 |
2 files changed, 9 insertions, 4 deletions
diff --git a/dbaccess/source/ui/inc/QueryTextView.hxx b/dbaccess/source/ui/inc/QueryTextView.hxx index 2e033f9bf9ff..7e1a7251fd87 100644 --- a/dbaccess/source/ui/inc/QueryTextView.hxx +++ b/dbaccess/source/ui/inc/QueryTextView.hxx @@ -2,9 +2,9 @@ * * $RCSfile: QueryTextView.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: fs $ $Date: 2001-06-08 08:41:35 $ + * last change: $Author: oj $ $Date: 2001-08-15 13:13:06 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -114,6 +114,8 @@ namespace dbaui void initialize(const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& _xFrame); OQueryViewSwitch* getView() { return m_pView; } void switchView(); + + virtual void GetFocus(); }; // end of temp classes @@ -127,6 +129,8 @@ namespace dbaui OQueryTextView(Window* pParent,ToolBox* _pToolBox); virtual ~OQueryTextView(); + virtual void GetFocus(); + virtual sal_Bool isCutAllowed(); virtual sal_Bool isPasteAllowed(); virtual sal_Bool isCopyAllowed(); diff --git a/dbaccess/source/ui/inc/QueryViewSwitch.hxx b/dbaccess/source/ui/inc/QueryViewSwitch.hxx index e5bc3cf2b645..cb5db0e588ad 100644 --- a/dbaccess/source/ui/inc/QueryViewSwitch.hxx +++ b/dbaccess/source/ui/inc/QueryViewSwitch.hxx @@ -2,9 +2,9 @@ * * $RCSfile: QueryViewSwitch.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: oj $ $Date: 2001-04-18 13:19:01 $ + * last change: $Author: oj $ $Date: 2001-08-15 13:13:06 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -105,6 +105,7 @@ namespace dbaui void zoomTableView(const Fraction& _rFraction); void SaveUIConfig(); void clearDesignView(); + void GetFocus(); OQueryDesignView* getRealView() const { return m_pDesignView; } |