no Browse is loaded from .src anymore

Change-Id: I72e87433fef1a27c6bcac2746d9d366335797800
This commit is contained in:
Caolán McNamara
2016-10-12 16:24:26 +01:00
parent bac1472713
commit 7f5d27a7a7
2 changed files with 0 additions and 14 deletions

View File

@@ -393,8 +393,6 @@ protected:
public:
BrowseBox( vcl::Window* pParent, WinBits nBits = 0,
BrowserMode nMode = BrowserMode::NONE );
BrowseBox( vcl::Window* pParent, const ResId& rId,
BrowserMode nMode = BrowserMode::NONE );
virtual ~BrowseBox() override;
virtual void dispose() override;

View File

@@ -110,7 +110,6 @@ void BrowseBox::ConstructImpl( BrowserMode nMode )
( bHasFocus ? 0 : 1 ) + ( GetUpdateMode() ? 0 : 1 );
}
BrowseBox::BrowseBox( vcl::Window* pParent, WinBits nBits, BrowserMode nMode )
:Control( pParent, nBits | WB_3DLOOK )
,DragSourceHelper( this )
@@ -120,17 +119,6 @@ BrowseBox::BrowseBox( vcl::Window* pParent, WinBits nBits, BrowserMode nMode )
ConstructImpl( nMode );
}
BrowseBox::BrowseBox( vcl::Window* pParent, const ResId& rId, BrowserMode nMode )
:Control( pParent, rId )
,DragSourceHelper( this )
,DropTargetHelper( this )
,aHScroll( VclPtr<ScrollBar>::Create(this, WinBits(WB_HSCROLL)) )
{
ConstructImpl(nMode);
}
BrowseBox::~BrowseBox()
{
disposeOnce();