summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/ui/querydesign/TableWindow.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/ui/querydesign/TableWindow.cxx')
-rw-r--r--dbaccess/source/ui/querydesign/TableWindow.cxx7
1 files changed, 1 insertions, 6 deletions
diff --git a/dbaccess/source/ui/querydesign/TableWindow.cxx b/dbaccess/source/ui/querydesign/TableWindow.cxx
index 5a3118e402d0..a03e64744cfb 100644
--- a/dbaccess/source/ui/querydesign/TableWindow.cxx
+++ b/dbaccess/source/ui/querydesign/TableWindow.cxx
@@ -184,11 +184,6 @@ void OTableWindow::SetPosSizePixel( const Point& rNewPos, const Size& rNewSize )
SetSizePixel( rNewSize );
}
-VclPtr<OTableWindowListBox> OTableWindow::CreateListBox()
-{
- return VclPtr<OTableWindowListBox>::Create(this);
-}
-
bool OTableWindow::FillListBox()
{
m_xListBox->Clear();
@@ -301,7 +296,7 @@ bool OTableWindow::Init()
// create list box if necessary
if ( !m_xListBox )
{
- m_xListBox = CreateListBox();
+ m_xListBox = VclPtr<OTableWindowListBox>::Create(this);
OSL_ENSURE( m_xListBox != nullptr, "OTableWindow::Init() : CreateListBox returned NULL !" );
m_xListBox->SetSelectionMode( SelectionMode::Multiple );
}