diff --git a/src/commands/CmdNews.cpp b/src/commands/CmdNews.cpp index 84beb9584..7d6cb3aba 100644 --- a/src/commands/CmdNews.cpp +++ b/src/commands/CmdNews.cpp @@ -108,7 +108,7 @@ void NewsItem::render () { // - The .by attribute modifier // - Exporting a report // - Multi-day holidays -void CmdNews::version2_6_0 (bool full, std::vector& items) { +void CmdNews::version2_6_0 (std::vector& items) { NewsItem writeable_context ( true, "'Writeable' context", diff --git a/src/commands/CmdNews.h b/src/commands/CmdNews.h index 7296dee5d..3c80f5832 100644 --- a/src/commands/CmdNews.h +++ b/src/commands/CmdNews.h @@ -45,7 +45,7 @@ class CmdNews : public Command public: CmdNews (); int execute (std::string&); - void version2_6_0 (bool, std::vector&); + void version2_6_0 (std::vector&); }; #endif