Mercurial > hg > easyhg
comparison src/hgtabwidget.cpp @ 425:ad106f5fe75f
Add "Ignore Files" and "Edit Ignored List" to Work menu (latter is subsumed from Advanced menu formerly). Also subsume Serve via HTTP into File menu as Share Repository, and add a more helpful description of it. Remove Advanced menu
author | Chris Cannam |
---|---|
date | Thu, 23 Jun 2011 10:58:32 +0100 |
parents | b9c153e00e84 |
children | 896b7903e8f2 |
comparison
equal
deleted
inserted
replaced
424:d4da9c0809ac | 425:ad106f5fe75f |
---|---|
194 bool HgTabWidget::canResolve() const | 194 bool HgTabWidget::canResolve() const |
195 { | 195 { |
196 return !m_fileStatusWidget->getAllUnresolvedFiles().empty(); | 196 return !m_fileStatusWidget->getAllUnresolvedFiles().empty(); |
197 } | 197 } |
198 | 198 |
199 bool HgTabWidget::canIgnore() const | |
200 { | |
201 return canAdd(); | |
202 } | |
203 | |
199 bool HgTabWidget::haveChangesToCommit() const | 204 bool HgTabWidget::haveChangesToCommit() const |
200 { | 205 { |
201 return m_fileStatusWidget->haveChangesToCommit(); | 206 return m_fileStatusWidget->haveChangesToCommit(); |
202 } | 207 } |
203 | 208 |