aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Ui/skinned/listwidget.cpp
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2015-06-29 18:52:07 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2015-06-29 18:52:07 +0000
commitf19c54c167659d8476f445b5c22a5e5237b50c93 (patch)
tree60b81d31079871388ffcdb9fa7e0a3636a4791a6 /src/plugins/Ui/skinned/listwidget.cpp
parentcde2bf3d8d2c5d132805d1c142940410d6a22596 (diff)
downloadqmmp-f19c54c167659d8476f445b5c22a5e5237b50c93.tar.gz
qmmp-f19c54c167659d8476f445b5c22a5e5237b50c93.tar.bz2
qmmp-f19c54c167659d8476f445b5c22a5e5237b50c93.zip
skinned: reverted previous commits
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5189 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Ui/skinned/listwidget.cpp')
-rw-r--r--src/plugins/Ui/skinned/listwidget.cpp3
1 files changed, 0 insertions, 3 deletions
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);