Fix license headers: Quassel IRC Team -> Quassel Project, 2007 -> 2008
[quassel.git] / src / core / ctcphandler.h
index 9cb2c78..4178c4e 100644 (file)
@@ -1,11 +1,11 @@
 /***************************************************************************
- *   Copyright (C) 2005/06 by The Quassel Team                             *
+ *   Copyright (C) 2005-08 by the Quassel Project                          *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   it under the terms of the GNU General Public License as published by  *
  *   the Free Software Foundation; either version 2 of the License, or     *
- *   (at your option) any later version.                                   *
+ *   (at your option) version 3.                                           *
  *                                                                         *
  *   This program is distributed in the hope that it will be useful,       *
  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
@@ -34,7 +34,7 @@ public:
 
   enum CtcpType {CtcpQuery, CtcpReply};
 
-  QStringList parse(CtcpType, QString, QString, QString);    
+  QStringList parse(CtcpType, QString prefix, QString target, QString message);
 
   QString dequote(QString);
   QString XdelimDequote(QString);
@@ -42,7 +42,7 @@ public:
   QString pack(QString ctcpTag, QString message);
   void query(QString bufname, QString ctcpTag, QString message);
   void reply(QString bufname, QString ctcpTag, QString message);
-  
+
 public slots:
   void handleAction(CtcpType, QString prefix, QString target, QString param);
   void handlePing(CtcpType, QString prefix, QString target, QString param);
@@ -53,7 +53,7 @@ public slots:
 private:
   QString XDELIM;
   QHash<QString, QString> ctcpMDequoteHash;
-  QHash<QString, QString> ctcpXDelimDequoteHash;    
+  QHash<QString, QString> ctcpXDelimDequoteHash;
 
 
 };