-rw-r--r-- | noncore/multimedia/opierec/device.h | 2 | ||||
-rw-r--r-- | noncore/multimedia/opierec/helpwindow.h | 2 | ||||
-rw-r--r-- | noncore/multimedia/opierec/qtrec.h | 2 | ||||
-rw-r--r-- | noncore/multimedia/opierec/wavFile.h | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/noncore/multimedia/opierec/device.h b/noncore/multimedia/opierec/device.h index 2d4d2fc..f92be98 100644 --- a/noncore/multimedia/opierec/device.h +++ b/noncore/multimedia/opierec/device.h @@ -6,9 +6,9 @@ class Device : public QObject { Q_OBJECT public: - Device( QObject * parent, const char * dspStr, const char * mixerStr, bool record ); + Device( QObject * parent=0, const char * dspStr=0, const char * mixerStr=0, bool record=0 ); ~Device() {}; bool closeDevice( bool); int getChannels(); int getFormat(); diff --git a/noncore/multimedia/opierec/helpwindow.h b/noncore/multimedia/opierec/helpwindow.h index bd8fbdf..bfe2341 100644 --- a/noncore/multimedia/opierec/helpwindow.h +++ b/noncore/multimedia/opierec/helpwindow.h @@ -24,9 +24,9 @@ class QPopupMenu; class HelpWindow : public QMainWindow { Q_OBJECT public: - HelpWindow( const QString& home_, const QString& path, QWidget* parent, const char *name ); + HelpWindow( const QString& home_=0, const QString& path=0, QWidget* parent=0, const char *name=0 ); ~HelpWindow(); private slots: diff --git a/noncore/multimedia/opierec/qtrec.h b/noncore/multimedia/opierec/qtrec.h index 1a51151..bcf5504 100644 --- a/noncore/multimedia/opierec/qtrec.h +++ b/noncore/multimedia/opierec/qtrec.h @@ -55,9 +55,9 @@ class QtRec : public QWidget { Q_OBJECT public: - QtRec( QWidget* parent, const char* name, WFlags fl ); + QtRec( QWidget* parent=0, const char* name=0, WFlags fl=0 ); ~QtRec(); QSlider *OutputSlider,*InputSlider; public slots: diff --git a/noncore/multimedia/opierec/wavFile.h b/noncore/multimedia/opierec/wavFile.h index 53740e0..b70c09d 100644 --- a/noncore/multimedia/opierec/wavFile.h +++ b/noncore/multimedia/opierec/wavFile.h @@ -26,10 +26,10 @@ typedef struct { class WavFile : public QObject { Q_OBJECT public: - WavFile( QObject * parent,const QString &fileName, bool newFile, int sampleRate, - int channels , int resolution, int format); + WavFile( QObject * parent=0,const QString &fileName=0, bool newFile=0, int sampleRate=0, + int channels=0 , int resolution=0, int format=0); ~WavFile(); wavhdr hdr; bool adjustHeaders(int fd, int total); QString currentFileName; |