summaryrefslogtreecommitdiff
path: root/modules/commands/ms_list.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/commands/ms_list.cpp')
-rw-r--r--modules/commands/ms_list.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/commands/ms_list.cpp b/modules/commands/ms_list.cpp
index b527939c6..127cfdaaf 100644
--- a/modules/commands/ms_list.cpp
+++ b/modules/commands/ms_list.cpp
@@ -11,7 +11,7 @@
#include "module.h"
-class CommandMSList
+class CommandMSList final
: public Command
{
public:
@@ -66,7 +66,7 @@ public:
if (!param.empty() && isdigit(param[0]))
{
- class MemoListCallback
+ class MemoListCallback final
: public NumberList
{
ListFormatter &list;
@@ -151,7 +151,7 @@ public:
}
};
-class MSList
+class MSList final
: public Module
{
CommandMSList commandmslist;