summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/inc/brwview.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-08-12 16:14:17 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-08-12 20:24:37 +0200
commit3c0193c43bd6ff88032c7b39c4393b9384fa88bf (patch)
tree5c2b1a496a10774c463405a2a5d0f824ba03fa0c /dbaccess/source/ui/inc/brwview.hxx
parent7956d0593cec116d05ca205dab8c7ae1646b6db0 (diff)
remove DBTreeView class which doesn't do anything useful
Change-Id: I9270f8f87149a395f47a5b4599d6eac4b07103c9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100607 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'dbaccess/source/ui/inc/brwview.hxx')
-rw-r--r--dbaccess/source/ui/inc/brwview.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/ui/inc/brwview.hxx b/dbaccess/source/ui/inc/brwview.hxx
index 82a7129f6985..f05d8c0303c3 100644
--- a/dbaccess/source/ui/inc/brwview.hxx
+++ b/dbaccess/source/ui/inc/brwview.hxx
@@ -24,6 +24,7 @@
#include <dbaccess/dataview.hxx>
#include <unotools/eventlisteneradapter.hxx>
+#include "dbtreelistbox.hxx"
namespace com::sun::star::awt {
class XControl;
@@ -35,14 +36,13 @@ class Splitter;
namespace dbaui
{
- class DBTreeView;
class SbaGridControl;
class UnoDataBrowserView final : public ODataView, public ::utl::OEventListenerAdapter
{
css::uno::Reference< css::awt::XControl > m_xGrid; // our grid's UNO representation
css::uno::Reference< css::awt::XControlContainer > m_xMe; // our own UNO representation
- VclPtr<DBTreeView> m_pTreeView;
+ VclPtr<InterimDBTreeListBox> m_pTreeView;
VclPtr<Splitter> m_pSplitter;
mutable VclPtr<SbaGridControl> m_pVclControl; // our grid's VCL representation
VclPtr<vcl::Window> m_pStatus;
@@ -68,8 +68,8 @@ namespace dbaui
sal_uInt16 View2ModelPos(sal_uInt16 nPos) const;
/// for the same reason the view column count isn't the same as the model column count
- void setSplitter(Splitter* _pSplitter);
- void setTreeView(DBTreeView* _pTreeView);
+ void setSplitter(Splitter* pSplitter);
+ void setTreeView(InterimDBTreeListBox* pTreeView);
void showStatus( const OUString& _rStatus );
void hideStatus();