diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-03-23 07:51:23 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-03-23 07:51:23 -0600 |
commit | e3e835e1c03b38d7819b5cb8aba92e0f300b10fa (patch) | |
tree | d89a617149abf91a6d3e3a887352183e6264091e /src/gui/recorder.h | |
parent | 9e19447c99400633a9abec9161c11d392742e067 (diff) | |
download | mana-e3e835e1c03b38d7819b5cb8aba92e0f300b10fa.tar.gz mana-e3e835e1c03b38d7819b5cb8aba92e0f300b10fa.tar.bz2 mana-e3e835e1c03b38d7819b5cb8aba92e0f300b10fa.tar.xz mana-e3e835e1c03b38d7819b5cb8aba92e0f300b10fa.zip |
Make some getters const
Diffstat (limited to 'src/gui/recorder.h')
-rw-r--r-- | src/gui/recorder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/recorder.h b/src/gui/recorder.h index 2a47b5c4..39d00c2c 100644 --- a/src/gui/recorder.h +++ b/src/gui/recorder.h @@ -58,7 +58,7 @@ class Recorder : public Window, public gcn::ActionListener /** * Whether or not the recorder is in use. */ - bool isRecording() {return (bool) mStream.is_open();} + bool isRecording() { return (bool) mStream.is_open(); } /** * called when the button is pressed |