summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opierec/device.h
authorllornkcor <llornkcor>2005-02-19 01:41:12 (UTC)
committer llornkcor <llornkcor>2005-02-19 01:41:12 (UTC)
commit42ff7b7515ef2220d3400c468f4cea5828f4faea (patch) (side-by-side diff)
tree3358e973ff98fcd79311298ffc56c88e39c8b4eb /noncore/multimedia/opierec/device.h
parente24ddf0db8e3e4329caeb8d0bee5db87cec1d2da (diff)
downloadopie-42ff7b7515ef2220d3400c468f4cea5828f4faea.zip
opie-42ff7b7515ef2220d3400c468f4cea5828f4faea.tar.gz
opie-42ff7b7515ef2220d3400c468f4cea5828f4faea.tar.bz2
simplify some things
Diffstat (limited to 'noncore/multimedia/opierec/device.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opierec/device.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/multimedia/opierec/device.h b/noncore/multimedia/opierec/device.h
index 8152e85..dbc7b00 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=0 );
+ Device( QObject * parent=0, bool record=0 );
~Device() {};
bool closeDevice( bool);
int getChannels();
@@ -36,7 +36,7 @@ public:
private:
int devRes, devCh, devRate, devForm, flags;
- char *dspstr, *mixstr;
+ QString dspstr, mixstr;
bool selectMicInput();
int openDevice( int );
private slots: