# HG changeset patch # User Chris Cannam # Date 1291241109 0 # Node ID 38faf16df9b60691bf5a2dad6fb5becf9c32e000 # Parent 2fef6b0dfbe85a86912d63b85d17a8d05ad88dd3 * minor menu fix diff -r 2fef6b0dfbe8 -r 38faf16df9b6 grapher.cpp --- a/grapher.cpp Wed Dec 01 21:02:53 2010 +0000 +++ b/grapher.cpp Wed Dec 01 22:05:09 2010 +0000 @@ -401,7 +401,7 @@ if (m_uncommittedParentId != "") { m_uncommitted = new UncommittedItem(); - m_scene->addItem(m_uncommitted); + m_scene->addUncommittedItem(m_uncommitted); ConnectionItem *conn = new ConnectionItem(); conn->setParent(m_items[m_uncommittedParentId]); conn->setChild(m_uncommitted); diff -r 2fef6b0dfbe8 -r 38faf16df9b6 mainwindow.cpp --- a/mainwindow.cpp Wed Dec 01 21:02:53 2010 +0000 +++ b/mainwindow.cpp Wed Dec 01 22:05:09 2010 +0000 @@ -1376,7 +1376,7 @@ connect(hgCommitAct, SIGNAL(triggered()), this, SLOT(hgCommit())); connect(hgFileDiffAct, SIGNAL(triggered()), this, SLOT(hgFileDiff())); connect(hgFolderDiffAct, SIGNAL(triggered()), this, SLOT(hgFolderDiff())); - connect(hgChgSetDiffAct, SIGNAL(triggered()), this, SLOT(hgChgSetDiff())); +// connect(hgChgSetDiffAct, SIGNAL(triggered()), this, SLOT(hgChgSetDiff())); connect(hgUpdateAct, SIGNAL(triggered()), this, SLOT(hgUpdate())); connect(hgRevertAct, SIGNAL(triggered()), this, SLOT(hgRevert())); connect(hgMergeAct, SIGNAL(triggered()), this, SLOT(hgMerge()));