From f19c54c167659d8476f445b5c22a5e5237b50c93 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Mon, 29 Jun 2015 18:52:07 +0000 Subject: skinned: reverted previous commits git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5189 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/Ui/skinned/listwidget.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/plugins/Ui/skinned/listwidget.cpp') diff --git a/src/plugins/Ui/skinned/listwidget.cpp b/src/plugins/Ui/skinned/listwidget.cpp index 3a76881cc..1688e0cdb 100644 --- a/src/plugins/Ui/skinned/listwidget.cpp +++ b/src/plugins/Ui/skinned/listwidget.cpp @@ -37,7 +37,6 @@ #include "actionmanager.h" #include "skin.h" #include "popupwidget.h" -#include "horizontalslider.h" #include "playlist.h" #define INVALID_INDEX -1 @@ -54,7 +53,6 @@ ListWidget::ListWidget(QWidget *parent) m_timer->setInterval(50); m_header = new PlayListHeader(this); - m_slider = new HorizontalSlider(this); m_update = false; m_drop_index = INVALID_INDEX; m_scroll_direction = NONE; @@ -249,7 +247,6 @@ void ListWidget::mousePressEvent(QMouseEvent *e) void ListWidget::resizeEvent(QResizeEvent *e) { m_header->setGeometry(0,0,width(), m_header->requiredHeight()); - m_slider->setGeometry(0, height() - 7, width(), 7); m_row_count = (e->size().height() - (m_header->isVisibleTo(this) ? m_header->height() : 0)) / m_drawer.rowHeight(); m_row_count = qMax(m_row_count, 0); updateList(PlayListModel::STRUCTURE); -- cgit v1.2.3-13-gbd6f