summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorpixel <pixel>2007-09-23 12:20:15 +0000
committerpixel <pixel>2007-09-23 12:20:15 +0000
commitb862c5ec77a0f8fe40bd6c12b65a7739bdec2b00 (patch)
treedfe3d12b97f9c9e5de10e7c86446995520906ffa /lib
parent36350232b4f4c7ddc7f3b9f65da81692e9f02183 (diff)
Adding SetMsg to the Message class.
Diffstat (limited to 'lib')
-rw-r--r--lib/Message.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/Message.cc b/lib/Message.cc
index 893f48f..45bca3d 100644
--- a/lib/Message.cc
+++ b/lib/Message.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Message.cc,v 1.7 2007-05-30 11:57:10 pixel Exp $ */
+/* $Id: Message.cc,v 1.8 2007-09-23 12:20:15 pixel Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -49,3 +49,7 @@ Task * Message::Do(Variables * v, Variables *, Handle * h) {
String Message::GetTitle(void) {
return tit;
}
+
+void Message::SetMsg(const String & _msg) {
+ msg = _msg;
+}