diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-09 18:25:42 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-09 18:44:34 +0900 |
commit | c8a3b81b3c22a3eb79afd726cfef71c0949efb7d (patch) | |
tree | 43c3df751ce6f659ee6670a54a55778b922eec1f /src/playlistview.cpp | |
parent | 30650e19e38500549bfa6092b213c6d852e470e9 (diff) | |
download | kmplayer-c8a3b81b3c22a3eb79afd726cfef71c0949efb7d.tar.gz kmplayer-c8a3b81b3c22a3eb79afd726cfef71c0949efb7d.zip |
Remove various '#define' strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/playlistview.cpp')
-rw-r--r-- | src/playlistview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/playlistview.cpp b/src/playlistview.cpp index 11a0f1a..1cd1568 100644 --- a/src/playlistview.cpp +++ b/src/playlistview.cpp @@ -134,8 +134,8 @@ KDE_NO_CDTOR_EXPORT PlayListView::PlayListView (TQWidget * parent, View * view, menu_pix = TDEGlobal::iconLoader ()->loadIcon (TQString ("player_playlist"), TDEIcon::Small); config_pix = TDEGlobal::iconLoader ()->loadIcon (TQString ("configure"), TDEIcon::Small); url_pix = TDEGlobal::iconLoader ()->loadIcon (TQString ("www"), TDEIcon::Small); - m_find = KStdAction::find (TQT_TQOBJECT(this), TQT_SLOT (slotFind ()), ac, "find"); - m_find_next = KStdAction::findNext (TQT_TQOBJECT(this), TQT_SLOT(slotFindNext()), ac, "next"); + m_find = KStdAction::find (this, TQT_SLOT (slotFind ()), ac, "find"); + m_find_next = KStdAction::findNext (this, TQT_SLOT(slotFindNext()), ac, "next"); m_find_next->setEnabled (false); connect (this, TQT_SIGNAL (contextMenuRequested (TQListViewItem *, const TQPoint &, int)), this, TQT_SLOT (contextMenuItem (TQListViewItem *, const TQPoint &, int))); connect (this, TQT_SIGNAL (expanded (TQListViewItem *)), |