diff filestatuswidget.cpp @ 118:9734fb0d6fff

* Rudimentary version of the popup showing more information when you click on a changeset in history graph
author Chris Cannam
date Fri, 26 Nov 2010 23:49:48 +0000
parents 78374cefa10f
children 908a1fdeed6a
line wrap: on
line diff
--- a/filestatuswidget.cpp	Fri Nov 26 22:46:29 2010 +0000
+++ b/filestatuswidget.cpp	Fri Nov 26 23:49:48 2010 +0000
@@ -83,7 +83,7 @@
     m_descriptions[FileStates::Unknown] = tr("These files are in your working folder but are not under version control.<br>"
                                              "Select a file and use Add to place it under version control or Ignore to remove it from this list.");
 
-    m_highlightExplanation = tr("Files highlighted <font color=red>in red</font> "
+    m_highlightExplanation = tr("Files highlighted <font color=#d40000>in red</font> "
                                 "have appeared since your most recent commit or update.");
 
     for (int i = int(FileStates::FirstState);
@@ -367,7 +367,7 @@
         foreach (QString file, highPriority) {
             QListWidgetItem *item = new QListWidgetItem(file);
             w->addItem(item);
-            item->setForeground(Qt::red); //!!! and a nice gold star
+            item->setForeground(QColor("#d40000")); //!!! and a nice gold star
             item->setSelected(selectedFiles.contains(file));
         }