summaryrefslogtreecommitdiff
path: root/basctl/source/basicide
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-01-06 10:50:37 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-01-06 11:46:13 +0000
commit8c51c5fa11bc09153bc3401045621b34fe21a0a4 (patch)
tree1463cc81dbcdfe636671809a25487fc7bc30d089 /basctl/source/basicide
parentcc88b3a3064149f9894b303d2609efe1e368de7f (diff)
basctl::CheckBox all loaded from .ui now, drop resid ctor
Change-Id: Ie11fdcea9d307518cabfa519ddccc65997250519
Diffstat (limited to 'basctl/source/basicide')
-rw-r--r--basctl/source/basicide/moduldl2.cxx11
-rw-r--r--basctl/source/basicide/moduldlg.hxx1
2 files changed, 0 insertions, 12 deletions
diff --git a/basctl/source/basicide/moduldl2.cxx b/basctl/source/basicide/moduldl2.cxx
index 30b3b466acd9..451cd4330715 100644
--- a/basctl/source/basicide/moduldl2.cxx
+++ b/basctl/source/basicide/moduldl2.cxx
@@ -162,17 +162,6 @@ void LibLBoxString::Paint(const Point& rPos, SvTreeListBox& rDev, const SvViewDa
// basctl::CheckBox
//----------------------------------------------------------------------------
-CheckBox::CheckBox( Window* pParent, const ResId& rResId )
- :SvTabListBox( pParent, rResId )
- ,eMode(ObjectMode::Module)
- ,m_aDocument( ScriptDocument::getApplicationScriptDocument() )
-{
- long aTabs_[] = { 1, 12 }; // TabPos needs at least one...
- // 12 because of the CheckBox
- SetTabs( aTabs_ );
- Init();
-}
-
CheckBox::CheckBox(Window* pParent, WinBits nStyle)
: SvTabListBox(pParent, nStyle)
, eMode(ObjectMode::Module)
diff --git a/basctl/source/basicide/moduldlg.hxx b/basctl/source/basicide/moduldlg.hxx
index 6dac934a633e..6a486416bb67 100644
--- a/basctl/source/basicide/moduldlg.hxx
+++ b/basctl/source/basicide/moduldlg.hxx
@@ -124,7 +124,6 @@ private:
void Init();
public:
- CheckBox(Window* pParent, const ResId& rResId);
CheckBox(Window* pParent, WinBits nStyle);
~CheckBox();