aboutsummaryrefslogtreecommitdiff
path: root/src/ui/playlist.cpp
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2010-03-11 18:46:25 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2010-03-11 18:46:25 +0000
commit013ee07b55a3738b28b5d46324392d8498b50f2b (patch)
tree50979d3872a15fd3e25a746418da0f56c8e8dadd /src/ui/playlist.cpp
parent542c1d2d3a26ce23b1d0668011b420db231334d2 (diff)
downloadqmmp-013ee07b55a3738b28b5d46324392d8498b50f2b.tar.gz
qmmp-013ee07b55a3738b28b5d46324392d8498b50f2b.tar.bz2
qmmp-013ee07b55a3738b28b5d46324392d8498b50f2b.zip
removed obsolete members
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1619 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/ui/playlist.cpp')
-rw-r--r--src/ui/playlist.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/playlist.cpp b/src/ui/playlist.cpp
index 32892385f..1b26ab5e0 100644
--- a/src/ui/playlist.cpp
+++ b/src/ui/playlist.cpp
@@ -50,7 +50,7 @@
PlayList::PlayList (PlayListManager *manager, QWidget *parent)
: QWidget (parent)
{
- setAttribute(Qt::WA_AlwaysShowToolTips,TRUE);
+ setAttribute(Qt::WA_AlwaysShowToolTips,true);
m_pl_manager = manager;
m_update = FALSE;
m_resize = FALSE;
@@ -409,7 +409,7 @@ void PlayList::mousePressEvent (QMouseEvent *e)
m_pos = e->pos ();
if (m_resizeWidget->underMouse())
{
- m_resize = TRUE;
+ m_resize = true;
setCursor (m_skin->getCursor (Skin::CUR_PSIZE));
}
else
@@ -486,7 +486,7 @@ void PlayList::readSettings()
else
setWindowFlags (Qt::Dialog | Qt::FramelessWindowHint);
move (settings.value ("PlayList/pos", QPoint (100, 332)).toPoint()); //position
- m_update = TRUE;
+ m_update = true;
}
}