summaryrefslogtreecommitdiffstats
path: root/src/app/playDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/playDialog.h')
-rw-r--r--src/app/playDialog.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/app/playDialog.h b/src/app/playDialog.h
index 020f9f1..c6a1d04 100644
--- a/src/app/playDialog.h
+++ b/src/app/playDialog.h
@@ -5,29 +5,29 @@
#define CODEINEPLAYDIALOG_H
#include <kurl.h>
-#include <qdialog.h>
+#include <ntqdialog.h>
class KListView;
-class QBoxLayout;
-class QListViewItem;
+class TQBoxLayout;
+class TQListViewItem;
namespace Codeine
{
- class PlayDialog : public QDialog
+ class PlayDialog : public TQDialog
{
Q_OBJECT
public:
- PlayDialog( QWidget*, bool show_welcome_dialog = false );
+ PlayDialog( TQWidget*, bool show_welcome_dialog = false );
const KURL &url() const { return m_url; }
- enum DialogCode { FILE = QDialog::Accepted + 2, VCD, CDDA, DVD, RECENT_FILE };
+ enum DialogCode { FILE = TQDialog::Accepted + 2, VCD, CDDA, DVD, RECENT_FILE };
private slots:
- void done( QListViewItem* );
+ void done( TQListViewItem* );
private:
- void createRecentFileWidget( QBoxLayout* );
+ void createRecentFileWidget( TQBoxLayout* );
KURL m_url;
};