diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-10-24 17:28:15 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-10-25 11:41:23 +0100 |
commit | 141a7aa1b3faafa7bf5c45b73f1604b16809a1a3 (patch) | |
tree | af26dade90fef00a21f464d007652440d9b675ff /svtools | |
parent | 3c4f6b7804495e94d951f5eaf7c4a947c9967b59 (diff) |
SvTreeListBox cannot be loaded from .src now
Change-Id: I80090f4daf9b7f224392a76449a87ab6aa6b7d05
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/contnr/treelistbox.cxx | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/svtools/source/contnr/treelistbox.cxx b/svtools/source/contnr/treelistbox.cxx index 0cab871c4086..d025ee62344b 100644 --- a/svtools/source/contnr/treelistbox.cxx +++ b/svtools/source/contnr/treelistbox.cxx @@ -363,37 +363,6 @@ SvTreeListBox::SvTreeListBox(vcl::Window* pParent, WinBits nWinStyle) : SetSublistOpenWithLeftRight(); } -SvTreeListBox::SvTreeListBox(vcl::Window* pParent, const ResId& rResId) : - Control(pParent, rResId), - DropTargetHelper(this), - DragSourceHelper(this), - mpImpl(new SvTreeListBoxImpl(*this)), - mbContextBmpExpanded(false), - mbAlternatingRowColors(false), - mbUpdateAlternatingRows(false), - eSelMode(SelectionMode::NONE), - nMinWidthInChars(0), - mbCenterAndClipText(false) -{ - pTargetEntry = nullptr; - nImpFlags = SvTreeListBoxFlags::NONE; - nDragOptions = DND_ACTION_COPYMOVE | DND_ACTION_LINK; - nDragDropMode = DragDropMode::NONE; - SvTreeList* pTempModel = new SvTreeList; - pTempModel->SetRefCount( 0 ); - SetBaseModel(pTempModel); - pModel->InsertView( this ); - pHdlEntry = nullptr; - pEdCtrl = nullptr; - pModel->SetCloneLink( LINK(this, SvTreeListBox, CloneHdl_Impl )); - SetType(WINDOW_TREELISTBOX); - - InitTreeView(); - Resize(); - - SetSublistOpenWithLeftRight(); -} - VCL_BUILDER_DECL_FACTORY(SvTreeListBox) { WinBits nWinStyle = WB_TABSTOP; |