diff options
Diffstat (limited to 'juk/playlistsplitter.h')
-rw-r--r-- | juk/playlistsplitter.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/juk/playlistsplitter.h b/juk/playlistsplitter.h index 0734ee05..cc163640 100644 --- a/juk/playlistsplitter.h +++ b/juk/playlistsplitter.h @@ -18,7 +18,7 @@ #include <kfiledialog.h> -#include <qwidgetstack.h> +#include <tqwidgetstack.h> #include "playlistbox.h" @@ -31,7 +31,7 @@ class TagEditor; /** * This is the main layout class of JuK. It should contain a PlaylistBox and - * a QWidgetStack of the Playlists. + * a TQWidgetStack of the Playlists. * * This class serves as a "mediator" (see "Design Patterns") between the JuK * class and the playlist classes. Thus all access to the playlist classes from @@ -43,12 +43,12 @@ class PlaylistSplitter : public QSplitter Q_OBJECT public: - PlaylistSplitter(QWidget *parent, const char *name = 0); + PlaylistSplitter(TQWidget *parent, const char *name = 0); virtual ~PlaylistSplitter(); PlaylistInterface *playlist() const { return m_playlistBox; } - virtual bool eventFilter(QObject *watched, QEvent *event); + virtual bool eventFilter(TQObject *watched, TQEvent *event); public slots: virtual void setFocus(); @@ -58,7 +58,7 @@ private: /** * This returns a pointer to the first item in the playlist on the top - * of the QWidgetStack of playlists. + * of the TQWidgetStack of playlists. */ Playlist *visiblePlaylist() const; @@ -75,13 +75,13 @@ private slots: */ void slotShowSearchResults(); void slotPlaylistSelectionChanged(); - void slotPlaylistChanged(QWidget *w); + void slotPlaylistChanged(TQWidget *w); private: Playlist *m_newVisible; PlaylistBox *m_playlistBox; SearchWidget *m_searchWidget; - QWidgetStack *m_playlistStack; + TQWidgetStack *m_playlistStack; TagEditor *m_editor; }; |