summaryrefslogtreecommitdiff
path: root/src/gui/recorder.h
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-03-23 07:02:32 -0600
committerJared Adams <jaxad0127@gmail.com>2009-03-23 07:02:32 -0600
commit7c360d2887216099ca8cc767f15a34fcf302803b (patch)
tree308a8889e1173a27b4c20ef608c0749449c8aa04 /src/gui/recorder.h
parentd3f315b45bd9055ac7f61082f5af54b863410517 (diff)
downloadmana-client-7c360d2887216099ca8cc767f15a34fcf302803b.tar.gz
mana-client-7c360d2887216099ca8cc767f15a34fcf302803b.tar.bz2
mana-client-7c360d2887216099ca8cc767f15a34fcf302803b.tar.xz
mana-client-7c360d2887216099ca8cc767f15a34fcf302803b.zip
Merge eA's command handling into CommandHandler
Also drop Aethyra's custom magic code
Diffstat (limited to 'src/gui/recorder.h')
-rw-r--r--src/gui/recorder.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/recorder.h b/src/gui/recorder.h
index 0bbab012..2a47b5c4 100644
--- a/src/gui/recorder.h
+++ b/src/gui/recorder.h
@@ -41,26 +41,26 @@ class Recorder : public Window, public gcn::ActionListener
virtual ~Recorder();
- /*
+ /**
* Outputs the message to the recorder file
*
* @param msg the line to write to the recorded file.
*/
void record(const std::string &msg);
- /*
- * Outputs the message to the recorder file
+ /**
+ * Sets the file being recorded to
*
* @param msg The file to write out to. If null, then stop recording.
*/
- void changeRecordingStatus(const std::string &msg);
+ void setRecordingFile(const std::string &msg);
- /*
+ /**
* Whether or not the recorder is in use.
*/
bool isRecording() {return (bool) mStream.is_open();}
- /*
+ /**
* called when the button is pressed
*
* @param event is the event that is generated