summaryrefslogtreecommitdiff
path: root/noncore
Side-by-side diff
Diffstat (limited to 'noncore') (more/less context) (show whitespace changes)
-rw-r--r--noncore/multimedia/opierec/device.h2
-rw-r--r--noncore/multimedia/opierec/helpwindow.h2
-rw-r--r--noncore/multimedia/opierec/qtrec.h2
-rw-r--r--noncore/multimedia/opierec/wavFile.h4
4 files changed, 5 insertions, 5 deletions
diff --git a/noncore/multimedia/opierec/device.h b/noncore/multimedia/opierec/device.h
index c9a7491..2d4d2fc 100644
--- a/noncore/multimedia/opierec/device.h
+++ b/noncore/multimedia/opierec/device.h
@@ -7,7 +7,7 @@
class Device : public QObject {
Q_OBJECT
public:
- Device( QObject * parent=0, const char * dspStr=0, const char * mixerStr=0, bool record=false );
+ Device( QObject * parent, const char * dspStr, const char * mixerStr, bool record );
~Device() {};
bool closeDevice( bool);
int getChannels();
diff --git a/noncore/multimedia/opierec/helpwindow.h b/noncore/multimedia/opierec/helpwindow.h
index 76b672a..bd8fbdf 100644
--- a/noncore/multimedia/opierec/helpwindow.h
+++ b/noncore/multimedia/opierec/helpwindow.h
@@ -25,7 +25,7 @@ class HelpWindow : public QMainWindow
{
Q_OBJECT
public:
- HelpWindow( const QString& home_, const QString& path, QWidget* parent = 0, const char *name=0 );
+ HelpWindow( const QString& home_, const QString& path, QWidget* parent, const char *name );
~HelpWindow();
private slots:
diff --git a/noncore/multimedia/opierec/qtrec.h b/noncore/multimedia/opierec/qtrec.h
index d0623d0..1a51151 100644
--- a/noncore/multimedia/opierec/qtrec.h
+++ b/noncore/multimedia/opierec/qtrec.h
@@ -56,7 +56,7 @@ class QtRec : public QWidget
Q_OBJECT
public:
- QtRec( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
+ QtRec( QWidget* parent, const char* name, WFlags fl );
~QtRec();
QSlider *OutputSlider,*InputSlider;
diff --git a/noncore/multimedia/opierec/wavFile.h b/noncore/multimedia/opierec/wavFile.h
index 51366ec..53740e0 100644
--- a/noncore/multimedia/opierec/wavFile.h
+++ b/noncore/multimedia/opierec/wavFile.h
@@ -27,8 +27,8 @@ typedef struct {
class WavFile : public QObject {
Q_OBJECT
public:
- WavFile( QObject * parent=0,const QString &fileName=0, bool newFile=true, int sampleRate = 0,
- int channels = 0, int resolution = 0, int format=0);
+ WavFile( QObject * parent,const QString &fileName, bool newFile, int sampleRate,
+ int channels , int resolution, int format);
~WavFile();
wavhdr hdr;
bool adjustHeaders(int fd, int total);