Mercurial > hg > easyhg
diff src/changesetitem.h @ 519:000f13faa089
Bookmarks are now displayed -- but exactly like tags, so far, there's no differentiation yet
author | Chris Cannam |
---|---|
date | Tue, 08 Nov 2011 16:42:09 +0000 |
parents | 306a62fe851e |
children | a17c06f773cd |
line wrap: on
line diff
--- a/src/changesetitem.h Thu Oct 20 15:39:46 2011 +0100 +++ b/src/changesetitem.h Tue Nov 08 16:42:09 2011 +0000 @@ -65,6 +65,8 @@ bool showBranch() const { return m_showBranch; } void setShowBranch(bool s) { m_showBranch = s; } + void setBookmarks(QStringList b) { m_bookmarks = b; } + signals: void detailShown(); void detailHidden(); @@ -110,6 +112,7 @@ bool m_current; bool m_closing; bool m_new; + QStringList m_bookmarks; QMap<QAction *, QString> m_parentDiffActions; QMap<QAction *, QString> m_summaryActions;