summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/dataproviderdlg.hxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-08-19 23:24:51 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-08-20 00:42:33 +0200
commit5b60aeb5cb6306f84f6ec44adbe1033e89a2962c (patch)
treef001152df969da6b827660c8601d0514b54f161d /sc/source/ui/inc/dataproviderdlg.hxx
parent447ecc3cfbae6a3db60d5c04360c4fa1f65eb679 (diff)
external data: improve the external data dialog
Change-Id: I417bc57e2b4be56c4e3f51aa47b447ad48f5684d Reviewed-on: https://gerrit.libreoffice.org/41340 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'sc/source/ui/inc/dataproviderdlg.hxx')
-rw-r--r--sc/source/ui/inc/dataproviderdlg.hxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/sc/source/ui/inc/dataproviderdlg.hxx b/sc/source/ui/inc/dataproviderdlg.hxx
index 1281adb0581f..ec519b4e9e35 100644
--- a/sc/source/ui/inc/dataproviderdlg.hxx
+++ b/sc/source/ui/inc/dataproviderdlg.hxx
@@ -15,6 +15,7 @@
#include <rtl/ref.hxx>
#include <vcl/dialog.hxx>
#include <vcl/layout.hxx>
+#include <vcl/lstbox.hxx>
#include "address.hxx"
#include "datamapper.hxx"
@@ -34,12 +35,15 @@ class DataProviderDlg : public ModalDialog
VclPtr<SvtURLBox> m_pCbUrl;
VclPtr<PushButton> m_pBtnBrowse;
VclPtr<OKButton> m_pBtnOk;
- VclPtr<ComboBox> m_pCBData;
+ VclPtr<ListBox> m_pCBData;
+ VclPtr<ListBox> m_pCBProvider;
+ VclPtr<Edit> m_pEdID;
DECL_LINK(UpdateClickHdl, Button*, void);
DECL_LINK(UpdateComboBoxHdl, ComboBox&, void);
DECL_LINK(BrowseHdl, Button*, void);
DECL_LINK(EditHdl, Edit&, void);
+ DECL_LINK(SelectHdl, ListBox&, void);
void UpdateEnable();