Sanitized AutoWho. Now rather than bulk-sending /WHO every minute for every channel,
[quassel.git] / src / qtopia / chatwidget.h
index 8e2c6de..052adc4 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-07 by the Quassel IRC 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  *
@@ -33,16 +33,16 @@ class ChatWidget : public QTextEdit {
     ChatWidget(QWidget *parent = 0);
 
   public slots:
-    void setContents(QList<ChatLine *>);
+    void setContents(QList<ChatLineOld *>);
     void appendMsg(AbstractUiMsg *);
     void prependMsg(AbstractUiMsg *);
-    void prependChatLine(ChatLine *);
-    void appendChatLine(ChatLine *);
-    void prependChatLines(QList<ChatLine *>);
-    void appendChatLines(QList<ChatLine *>);
+    void prependChatLine(ChatLineOld *);
+    void appendChatLine(ChatLineOld *);
+    void prependChatLines(QList<ChatLineOld *>);
+    void appendChatLines(QList<ChatLineOld *>);
 
   private:
-    void insertChatLine(ChatLine *);
+    void insertChatLine(ChatLineOld *);
     void insertStyledText(const QtopiaUiStyle::StyledText &);