diff changesetitem.h @ 128:fcaf09ee825d

* Show tags and current working copy parents in history graph
author Chris Cannam
date Mon, 29 Nov 2010 20:09:58 +0000
parents 005a54380502
children aaeab914f2a3
line wrap: on
line diff
--- a/changesetitem.h	Mon Nov 29 17:48:43 2010 +0000
+++ b/changesetitem.h	Mon Nov 29 20:09:58 2010 +0000
@@ -45,6 +45,9 @@
     bool isWide() const { return m_wide; }
     void setWide(bool w) { m_wide = w; }
 
+    bool isCurrent() const { return m_current; }
+    void setCurrent(bool c) { m_current = c; }
+
     bool shouldShowBranch() const { return m_showBranch; }
     void setShowBranch(bool s) { m_showBranch = s; }
 
@@ -67,6 +70,7 @@
     int m_column;
     int m_row;
     bool m_wide;
+    bool m_current;
 };
 
 #endif // CHANGESETITEM_H