[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[vidalia-svn] r1929: Remove the message count status tip in the message log. Reso (in trunk: . src/gui/log)



Author: edmanm
Date: 2007-09-16 17:14:04 -0400 (Sun, 16 Sep 2007)
New Revision: 1929

Modified:
   trunk/
   trunk/src/gui/log/logtreewidget.cpp
Log:
 r1933@lysithea:  edmanm | 2007-09-16 17:13:49 -0400
 Remove the message count status tip in the message log. Resolves ticket #284
 found by eight118.



Property changes on: trunk
___________________________________________________________________
 svk:merge ticket from /local/vidalia/trunk [r1933] on dc66be73-d13e-47ba-a267-8dc7cda68c65

Modified: trunk/src/gui/log/logtreewidget.cpp
===================================================================
--- trunk/src/gui/log/logtreewidget.cpp	2007-09-15 14:25:42 UTC (rev 1928)
+++ trunk/src/gui/log/logtreewidget.cpp	2007-09-16 21:14:04 UTC (rev 1929)
@@ -37,8 +37,6 @@
 {
   setHeader(new LogHeaderView(this));
   
-  setStatusTip(tr("Messages Shown: ") + "0");
-
   /* Default to always scrolling to the most recent item added */
   _scrollOnNewItem = true;
   connect(verticalScrollBar(), SIGNAL(valueChanged(int)),
@@ -102,9 +100,6 @@
 {
   /* Clear the messages */
   clear();
-  /* This should always be 0, but just in case clear() doesn't really remove
-   * all, we'll get the current count again. */
-  setStatusTip(tr("Messages Shown: %1").arg(messageCount()));
 }
 
 /** Adjusts the message column width to accomodate long messages. */
@@ -203,9 +198,6 @@
   if (_scrollOnNewItem) {
     scrollToItem(item);
   }
-
-  /* Update our tooltip and return the new log item */
-  setStatusTip(tr("Messages Shown: %1").arg(messageCount()));
   return item;
 }
 
@@ -226,8 +218,6 @@
     }
     index--;
   }
-
-  setStatusTip(tr("Messages Shown: %1").arg(messageCount()));
 }
 
 /** Searches the log for entries that contain the given text. */