summaryrefslogtreecommitdiffstats
path: root/krec/krecord_private.h
diff options
context:
space:
mode:
Diffstat (limited to 'krec/krecord_private.h')
-rw-r--r--krec/krecord_private.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/krec/krecord_private.h b/krec/krecord_private.h
index 8c157f41..407f3f0a 100644
--- a/krec/krecord_private.h
+++ b/krec/krecord_private.h
@@ -15,7 +15,7 @@
#ifndef KRECORD_PRIVATE_H
#define KRECORD_PRIVATE_H
-#include <qobject.h>
+#include <tqobject.h>
#include <kartsserver.h>
#include <kartsdispatcher.h>
@@ -23,7 +23,7 @@
#include <artsgui.h>
#include <kartswidget.h>
#include <kurl.h>
-#include <qlayout.h>
+#include <tqlayout.h>
#include "krecfileview.h"
@@ -43,7 +43,7 @@ class KRecentFilesAction;
namespace KSettings { class Dialog; }
-class KRecPrivate : public QObject {
+class KRecPrivate : public TQObject {
Q_OBJECT
public:
/// Constructor
@@ -97,7 +97,7 @@ public slots:
void execKMix();
private:
void pNewFile( KRecFile* );
- void pSaveFile( const QString &);
+ void pSaveFile( const TQString &);
public:
KAction *aRecord, *aPlay, *aStop, *aExportFile;
KAction *aBegin, *aEnd;
@@ -127,17 +127,17 @@ public:
KRecExportItem *_exportitem;
};
-class KRecMainWidget : public QWidget {
+class KRecMainWidget : public TQWidget {
Q_OBJECT
public:
- KRecMainWidget( QWidget* p, const char* n=0 ) : QWidget( p,n ) {
- _layout = new QBoxLayout( this, QBoxLayout::LeftToRight, 2 );
+ KRecMainWidget( TQWidget* p, const char* n=0 ) : TQWidget( p,n ) {
+ _layout = new TQBoxLayout( this, TQBoxLayout::LeftToRight, 2 );
_kaw_volumecontrol = new KArtsWidget( this );
_layout->addWidget( _kaw_volumecontrol, 0 );
_fileview = new KRecFileView( this );
_layout->addWidget( _fileview, 500 );
}
- QBoxLayout *_layout;
+ TQBoxLayout *_layout;
KArtsWidget *_kaw_volumecontrol;
Arts::Widget _artswidget;
KRecFileView *_fileview;