[Konversation-devel] [Bug 96609] if you insert a reminder-bar, all tabs blink as if something was said in these queries/channels

Peter Simonsson psn at linux.se
Fri Apr 1 18:35:56 CEST 2005


------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=96609         
psn linux se changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED



------- Additional Comments From psn linux se  2005-04-01 18:35 -------
CVS commit by psn: 

Don't blink tabs on insert remember line

BUG:96609


  M +1 -1      chatwindow.cpp   1.114
  M +2 -2      ircview.cpp   1.242
  M +1 -1      ircview.h   1.63


--- kdeextragear-2/konversation/konversation/chatwindow.cpp  #1.113:1.114
 @ -227,5 +227,5  @ void ChatWindow::insertRememberLine()
   Q_ASSERT(textView);  if(!textView) return;
   kdDebug() << "Inserting remember line" << endl;
-  textView->appendRaw("<br><hr color=\"#"+KonversationApplication::preferences.getColor("CommandMessage")+"\" noshade>", true);
+  textView->appendRaw("<br><hr color=\"#"+KonversationApplication::preferences.getColor("CommandMessage")+"\" noshade>", true, true);
 }
 

--- kdeextragear-2/konversation/konversation/ircview.cpp  #1.241:1.242
 @ -518,5 +518,5  @ void IRCView::append(const QString& nick
 }
 
-void IRCView::appendRaw(const QString& message, bool suppressTimestamps)
+void IRCView::appendRaw(const QString& message, bool suppressTimestamps, bool self)
 {
   QString channelColor=KonversationApplication::preferences.getColor("ChannelMessage");
 @ -532,5 +532,5  @ void IRCView::appendRaw(const QString& m
     }
 
-  doAppend(line);
+  doAppend(line, true, self);
 }
 

--- kdeextragear-2/konversation/konversation/ircview.h  #1.62:1.63
 @ -78,5 +78,5  @ class IRCView : public KTextBrowser
   public slots:
     void append(const QString& nick, const QString& message);
-    void appendRaw(const QString& message, bool suppressTimestamps=false);
+    void appendRaw(const QString& message, bool suppressTimestamps=false, bool self = false);
     void appendQuery(const QString& nick, const QString& message);
     void appendAction(const QString& nick, const QString& message);


More information about the Konversation-devel mailing list