diff --git a/libtransport/AdminInterfaceCommand.cpp b/libtransport/AdminInterfaceCommand.cpp index 9a25726f8c6d346e5a8964db26931e5d88ff4ef7..3143b64c1db2334e5227c070f901cb29fcc52e2d 100644 --- a/libtransport/AdminInterfaceCommand.cpp +++ b/libtransport/AdminInterfaceCommand.cpp @@ -30,12 +30,13 @@ namespace Transport { -AdminInterfaceCommand::AdminInterfaceCommand(const std::string &name, Category category, Context context, AccessMode accessMode, Actions actions) { +AdminInterfaceCommand::AdminInterfaceCommand(const std::string &name, Category category, Context context, AccessMode accessMode, Actions actions, const std::string &label) { m_name = name; m_category = category; m_context = context; m_accessMode = accessMode; m_actions = actions; + m_label = label; } const std::string AdminInterfaceCommand::getCategoryName(Category category) {