diff options
author | Ira Rice <irarice@gmail.com> | 2009-01-17 21:16:21 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-01-17 21:16:21 -0700 |
commit | efa25a6392ddd4f987620c43b65204340831b55d (patch) | |
tree | 248509331dc8356586562f5fd31c70692d32092b | |
parent | 3a1afa91e94733fd32b5d4229ca2a94831909eb1 (diff) | |
download | mana-efa25a6392ddd4f987620c43b65204340831b55d.tar.gz mana-efa25a6392ddd4f987620c43b65204340831b55d.tar.bz2 mana-efa25a6392ddd4f987620c43b65204340831b55d.tar.xz mana-efa25a6392ddd4f987620c43b65204340831b55d.zip |
Repaired recorder functions.
Signed-off-by: Ira Rice <irarice@gmail.com>
-rw-r--r-- | src/recorder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/recorder.h b/src/recorder.h index 9f30184f..fe49810f 100644 --- a/src/recorder.h +++ b/src/recorder.h @@ -38,7 +38,7 @@ class Recorder : public ButtonBoxListener void help() const; void help(const std::string &args) const; void buttonBoxRespond(); - bool isRecording() const {return mStream;} + bool isRecording() const {return mStream.is_open();} virtual ~Recorder(); private: ChatWindow *mChat; |