From ddaa001dafb5122e6e363e4acbbe6ce045b7b104 Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 21 Jan 2013 22:31:16 -0500 Subject: Merge usefulness of Flags and Extensible classes into Extensible, made most flags we have juse strings instead of defines/enums --- modules/commands/ms_rsend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/commands/ms_rsend.cpp') diff --git a/modules/commands/ms_rsend.cpp b/modules/commands/ms_rsend.cpp index 3a4a7ef35..19bd80437 100644 --- a/modules/commands/ms_rsend.cpp +++ b/modules/commands/ms_rsend.cpp @@ -68,7 +68,7 @@ class CommandMSRSend : public Command throw CoreException("NULL mi in ms_rsend"); Memo *m = (mi->memos->size() ? mi->GetMemo(mi->memos->size() - 1) : NULL); if (m != NULL) - m->SetFlag(MF_RECEIPT); + m->receipt = true; } } -- cgit