Mercurial > hg > easyhg
diff src/changesetitem.h @ 506:470829a21f98
Identify closed branches and display them in a lighter shade
author | Chris Cannam |
---|---|
date | Mon, 17 Oct 2011 22:08:05 +0100 |
parents | 8bdc8f27d19c |
children | c43880dfdb78 |
line wrap: on
line diff
--- a/src/changesetitem.h Mon Oct 17 16:25:02 2011 +0100 +++ b/src/changesetitem.h Mon Oct 17 22:08:05 2011 +0100 @@ -51,6 +51,9 @@ bool isCurrent() const { return m_current; } void setCurrent(bool c) { m_current = c; } + bool isClosed() const { return m_closed; } + void setClosed(bool c) { m_closed = c; } + bool isNew() const { return m_new; } void setNew(bool n) { m_new = n; } @@ -98,6 +101,7 @@ int m_row; bool m_wide; bool m_current; + bool m_closed; bool m_new; QMap<QAction *, QString> m_parentDiffActions;