summaryrefslogtreecommitdiffstats
path: root/juk/dynamicplaylist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'juk/dynamicplaylist.cpp')
-rw-r--r--juk/dynamicplaylist.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/juk/dynamicplaylist.cpp b/juk/dynamicplaylist.cpp
index 69d0a4ae..336d1e3e 100644
--- a/juk/dynamicplaylist.cpp
+++ b/juk/dynamicplaylist.cpp
@@ -42,8 +42,8 @@ private:
DynamicPlaylist::DynamicPlaylist(const PlaylistList &playlists,
PlaylistCollection *collection,
- const QString &name,
- const QString &iconName,
+ const TQString &name,
+ const TQString &iconName,
bool setupPlaylist,
bool synchronizePlaying) :
Playlist(collection, true),
@@ -60,14 +60,14 @@ DynamicPlaylist::DynamicPlaylist(const PlaylistList &playlists,
for(PlaylistList::ConstIterator it = playlists.begin(); it != playlists.end(); ++it)
m_observers.append(new PlaylistDirtyObserver(this, *it));
- connect(CollectionList::instance(), SIGNAL(signalCollectionChanged()), this, SLOT(slotSetDirty()));
+ connect(CollectionList::instance(), TQT_SIGNAL(signalCollectionChanged()), this, TQT_SLOT(slotSetDirty()));
}
DynamicPlaylist::~DynamicPlaylist()
{
lower();
- for(QValueList<PlaylistObserver *>::ConstIterator it = m_observers.begin();
+ for(TQValueList<PlaylistObserver *>::ConstIterator it = m_observers.begin();
it != m_observers.end();
++it)
{
@@ -93,7 +93,7 @@ void DynamicPlaylist::slotReload()
checkUpdateItems();
}
-void DynamicPlaylist::lower(QWidget *top)
+void DynamicPlaylist::lower(TQWidget *top)
{
if(top == this)
return;
@@ -130,13 +130,13 @@ PlaylistItemList DynamicPlaylist::items()
return Playlist::items();
}
-void DynamicPlaylist::showEvent(QShowEvent *e)
+void DynamicPlaylist::showEvent(TQShowEvent *e)
{
checkUpdateItems();
Playlist::showEvent(e);
}
-void DynamicPlaylist::paintEvent(QPaintEvent *e)
+void DynamicPlaylist::paintEvent(TQPaintEvent *e)
{
checkUpdateItems();
Playlist::paintEvent(e);
@@ -153,7 +153,7 @@ void DynamicPlaylist::updateItems()
PlaylistItemList newSiblings = siblings;
if(m_siblings != newSiblings) {
m_siblings = newSiblings;
- QTimer::singleShot(0, this, SLOT(slotUpdateItems()));
+ TQTimer::singleShot(0, this, TQT_SLOT(slotUpdateItems()));
}
}