author | llornkcor <llornkcor> | 2003-04-21 23:58:24 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2003-04-21 23:58:24 (UTC) |
commit | 2d4cf8a85edc83b72855854b0bd337d2993df95b (patch) (unidiff) | |
tree | a4d1909771e181a984b00cc573669de0985ac179 | |
parent | e951446d52d2a89dd919b1665b034516567384ee (diff) | |
download | opie-2d4cf8a85edc83b72855854b0bd337d2993df95b.zip opie-2d4cf8a85edc83b72855854b0bd337d2993df95b.tar.gz opie-2d4cf8a85edc83b72855854b0bd337d2993df95b.tar.bz2 |
no defaults in constructors
-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 c9a7491..2d4d2fc 100644 --- a/noncore/multimedia/opierec/device.h +++ b/noncore/multimedia/opierec/device.h | |||
@@ -7,7 +7,7 @@ | |||
7 | class Device : public QObject { | 7 | class Device : public QObject { |
8 | Q_OBJECT | 8 | Q_OBJECT |
9 | public: | 9 | public: |
10 | Device( QObject * parent=0, const char * dspStr=0, const char * mixerStr=0, bool record=false ); | 10 | Device( QObject * parent, const char * dspStr, const char * mixerStr, bool record ); |
11 | ~Device() {}; | 11 | ~Device() {}; |
12 | bool closeDevice( bool); | 12 | bool closeDevice( bool); |
13 | int getChannels(); | 13 | 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 | |||
25 | { | 25 | { |
26 | Q_OBJECT | 26 | Q_OBJECT |
27 | public: | 27 | public: |
28 | HelpWindow( const QString& home_, const QString& path, QWidget* parent = 0, const char *name=0 ); | 28 | HelpWindow( const QString& home_, const QString& path, QWidget* parent, const char *name ); |
29 | ~HelpWindow(); | 29 | ~HelpWindow(); |
30 | 30 | ||
31 | private slots: | 31 | 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 | |||
56 | Q_OBJECT | 56 | Q_OBJECT |
57 | 57 | ||
58 | public: | 58 | public: |
59 | QtRec( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); | 59 | QtRec( QWidget* parent, const char* name, WFlags fl ); |
60 | ~QtRec(); | 60 | ~QtRec(); |
61 | QSlider *OutputSlider,*InputSlider; | 61 | QSlider *OutputSlider,*InputSlider; |
62 | 62 | ||
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 { | |||
27 | class WavFile : public QObject { | 27 | class WavFile : public QObject { |
28 | Q_OBJECT | 28 | Q_OBJECT |
29 | public: | 29 | public: |
30 | WavFile( QObject * parent=0,const QString &fileName=0, bool newFile=true, int sampleRate = 0, | 30 | WavFile( QObject * parent,const QString &fileName, bool newFile, int sampleRate, |
31 | int channels = 0, int resolution = 0, int format=0); | 31 | int channels , int resolution, int format); |
32 | ~WavFile(); | 32 | ~WavFile(); |
33 | wavhdr hdr; | 33 | wavhdr hdr; |
34 | bool adjustHeaders(int fd, int total); | 34 | bool adjustHeaders(int fd, int total); |