Mercurial > hg > easyhg
diff mainwindow.cpp @ 145:644bd31e8301
* Include the uncommitted item in general graph layout (in case it is not at the head, when other items will need to avoid it)
author | Chris Cannam |
---|---|
date | Wed, 01 Dec 2010 17:41:14 +0000 |
parents | f61f032b06f9 |
children | 465c8d51c6d5 |
line wrap: on
line diff
--- a/mainwindow.cpp Wed Dec 01 11:54:01 2010 +0000 +++ b/mainwindow.cpp Wed Dec 01 17:41:14 2010 +0000 @@ -743,6 +743,15 @@ } } +void MainWindow::open(QString local) +{ + if (openLocal(local)) { + enableDisableActions(); + clearState(); + hgQueryPaths(); + } +} + bool MainWindow::complainAboutFilePath(QString arg) { QMessageBox::critical @@ -1435,8 +1444,8 @@ QDir localRepoDir; QDir workFolderDir; - bool workFolderExist; - bool localRepoExist; + bool workFolderExist = true; + bool localRepoExist = true; remoteRepoActionsEnabled = true; if (remoteRepoPath.isEmpty()) { @@ -1544,8 +1553,7 @@ QStringList ids; foreach (Changeset *cs, currentParents) ids.push_back(cs->id()); - hgTabs->setCurrent(ids); - hgTabs->showUncommittedChanges(hgTabs->canCommit()); + hgTabs->setCurrent(ids, hgTabs->canCommit()); // Set the state field on the file status widget