X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fcommands%2Fcmd_reloadmodule.h;h=df221952ec15c2535f55b62af1e001193182762c;hb=9183ebd28c79b12ddf29b3847f59679e480af70a;hp=3ab68ea4213611b8ca8bff58e6790aa9b74f668a;hpb=e4acbc95b8b6cd5b28d38a2242c02e8ff4991e4a;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_reloadmodule.h b/include/commands/cmd_reloadmodule.h index 3ab68ea42..df221952e 100644 --- a/include/commands/cmd_reloadmodule.h +++ b/include/commands/cmd_reloadmodule.h @@ -29,14 +29,14 @@ class CommandReloadmodule : public Command public: /** Constructor for reloadmodule. */ - CommandReloadmodule (InspIRCd* Instance) : Command(Instance,"RELOADMODULE",'o',1) { syntax = ""; } + CommandReloadmodule (InspIRCd* Instance) : Command(Instance,"RELOADMODULE","o",1) { syntax = ""; } /** Handle command. * @param parameters The parameters to the comamnd * @param pcnt The number of parameters passed to teh command * @param user The user issuing the command * @return A value from CmdResult to indicate command success or failure. */ - CmdResult Handle(const char** parameters, int pcnt, User *user); + CmdResult Handle(const std::vector& parameters, User *user); }; #endif