]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_qline.h
Remove 'default log' and <options:loglevel> (wtf?)
[user/henk/code/inspircd.git] / include / commands / cmd_qline.h
index 735c270b5428e79f40a9bc64c4b4ac77eeeb0940..b6e58a4a826ae6c44431a6ceb90fb9c63d21b2aa 100644 (file)
@@ -29,14 +29,14 @@ class CommandQline : public Command
  public:
        /** Constructor for qline.
         */
-       CommandQline (InspIRCd* Instance) : Command(Instance,"QLINE",'o',1,false,0) { syntax = "<nick> [<duration> :<reason>]"; }
+       CommandQline (InspIRCd* Instance) : Command(Instance,"QLINE","o",1,false,0) { syntax = "<nick> [<duration> :<reason>]"; }
        /** 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 char* const* parameters, int pcnt, User *user);
 };
 
 #endif