summaryrefslogtreecommitdiffstats
path: root/juk/playlistsplitter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'juk/playlistsplitter.cpp')
-rw-r--r--juk/playlistsplitter.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/juk/playlistsplitter.cpp b/juk/playlistsplitter.cpp
index 3454ee3d..8731c30f 100644
--- a/juk/playlistsplitter.cpp
+++ b/juk/playlistsplitter.cpp
@@ -34,8 +34,8 @@ using namespace ActionCollection;
// public methods
////////////////////////////////////////////////////////////////////////////////
-PlaylistSplitter::PlaylistSplitter(TQWidget *parent, const char *name) :
- TQSplitter(Qt::Horizontal, parent, name),
+PlaylistSplitter::PlaylistSplitter(TQWidget *tqparent, const char *name) :
+ TQSplitter(Qt::Horizontal, tqparent, name),
m_newVisible(0),
m_playlistBox(0),
m_searchWidget(0),
@@ -94,7 +94,7 @@ void PlaylistSplitter::slotFocusCurrentPlaylist()
if(!item)
return;
- // A little bit of a hack to make TQListView repaint things properly. Switch
+ // A little bit of a hack to make TQListView tqrepaint things properly. Switch
// to single selection mode, set the selection and then switch back.
playlist->setSelectionMode(TQListView::Single);
@@ -118,10 +118,10 @@ Playlist *PlaylistSplitter::visiblePlaylist() const
void PlaylistSplitter::setupActions()
{
KToggleAction *showSearch =
- new KToggleAction(i18n("Show &Search Bar"), "filefind", 0, actions(), "showSearch");
+ new KToggleAction(i18n("Show &Search Bar"), "filetqfind", 0, ActionCollection::actions(), "showSearch");
showSearch->setCheckedState(i18n("Hide &Search Bar"));
- new KAction(i18n("Edit Track Search"), "edit_clear", "F6", this, TQT_SLOT(setFocus()), actions(), "editTrackSearch");
+ new KAction(i18n("Edit Track Search"), "edit_clear", "F6", TQT_TQOBJECT(this), TQT_SLOT(setFocus()), ActionCollection::actions(), "editTrackSearch");
}
void PlaylistSplitter::setupLayout()