summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-03 12:14:31 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-04 09:21:01 +0000
commit8f028bc6f184c7148d6b817864bfa9e533b6e813 (patch)
treed1a0af466407f82b02e32a963c26b32dfad9e7e7 /sc/source/ui/inc
parentf79bfd0ac541e98ee32e089cdf94a18989ff83eb (diff)
convert select data source dialog to .ui
Change-Id: Iecca542c2c425a34184ba2c3ae0e34d093fa6a06
Diffstat (limited to 'sc/source/ui/inc')
-rw-r--r--sc/source/ui/inc/dapidata.hxx22
1 files changed, 4 insertions, 18 deletions
diff --git a/sc/source/ui/inc/dapidata.hxx b/sc/source/ui/inc/dapidata.hxx
index 85fa4bea9813..5d1c989a4024 100644
--- a/sc/source/ui/inc/dapidata.hxx
+++ b/sc/source/ui/inc/dapidata.hxx
@@ -22,42 +22,28 @@
#include <vcl/button.hxx>
#include <vcl/dialog.hxx>
-#include <vcl/fixed.hxx>
#include <vcl/lstbox.hxx>
#include <vcl/combobox.hxx>
-//------------------------------------------------------------------------
-
struct ScImportSourceDesc;
-
class ScDataPilotDatabaseDlg : public ModalDialog
{
private:
- FixedLine aFlFrame;
- FixedText aFtDatabase;
- ListBox aLbDatabase;
- FixedText aFtObject;
- ComboBox aCbObject;
- FixedText aFtType;
- ListBox aLbType;
- OKButton aBtnOk;
- CancelButton aBtnCancel;
- HelpButton aBtnHelp;
+ ListBox* m_pLbDatabase;
+ ComboBox* m_pCbObject;
+ ListBox* m_pLbType;
void FillObjects();
DECL_LINK( SelectHdl, void* );
public:
- ScDataPilotDatabaseDlg( Window* pParent );
- ~ScDataPilotDatabaseDlg();
+ ScDataPilotDatabaseDlg(Window* pParent);
void GetValues( ScImportSourceDesc& rDesc );
};
-
#endif
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */