summaryrefslogtreecommitdiff
path: root/basctl/source/basicide/moduldlg.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-01-06 11:22:44 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-01-06 11:46:14 +0000
commitea89ba42e2d09b074043b70f2d38b9f5b4684261 (patch)
treecf51ba91ac0072a43d4246a7f179cf6b505c9929 /basctl/source/basicide/moduldlg.hxx
parent8c51c5fa11bc09153bc3401045621b34fe21a0a4 (diff)
convert module and dialog tabpages to .ui
Change-Id: I2954a734b44be22d4d7ffae17480dde1c0ac64e7
Diffstat (limited to 'basctl/source/basicide/moduldlg.hxx')
-rw-r--r--basctl/source/basicide/moduldlg.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/basctl/source/basicide/moduldlg.hxx b/basctl/source/basicide/moduldlg.hxx
index 6a486416bb67..e755b74423fb 100644
--- a/basctl/source/basicide/moduldlg.hxx
+++ b/basctl/source/basicide/moduldlg.hxx
@@ -111,7 +111,8 @@ protected:
SvTreeListEntry*& rpNewParent, sal_uLong& rNewChildPos, sal_Bool bMove );
public:
- ExtTreeListBox( Window* pParent, const ResId& rRes );
+ ExtTreeListBox(Window* pParent, const ResId& rRes);
+ ExtTreeListBox(Window* pParent, WinBits nStyle);
~ExtTreeListBox();
};
@@ -182,12 +183,11 @@ public:
class ObjectPage: public TabPage
{
protected:
- FixedText aLibText;
- ExtTreeListBox aBasicBox;
- PushButton aEditButton;
- PushButton aNewModButton;
- PushButton aNewDlgButton;
- PushButton aDelButton;
+ ExtTreeListBox* m_pBasicBox;
+ PushButton* m_pEditButton;
+ PushButton* m_pNewModButton;
+ PushButton* m_pNewDlgButton;
+ PushButton* m_pDelButton;
DECL_LINK( BasicBoxHighlightHdl, TreeListBox * );
DECL_LINK( ButtonHdl, Button * );
@@ -204,7 +204,7 @@ protected:
virtual void DeactivatePage();
public:
- ObjectPage( Window* pParent, const ResId& rResId, sal_uInt16 nMode );
+ ObjectPage(Window* pParent, const OString& rName, sal_uInt16 nMode);
void SetCurrentEntry( EntryDescriptor& rDesc );
void SetTabDlg( TabDialog* p ) { pTabDlg = p;}