Renamed getRepo to getWorkspace

FossilOrigin-Name: 654259ef3bb3e7e2cc43a85637a8320b501a6593
This commit is contained in:
kostas
2015-04-30 11:04:43 +00:00
parent c67746a84d
commit 2ad805ecb5
4 changed files with 61 additions and 61 deletions

View File

@ -275,11 +275,11 @@ private:
bool operationAborted;
stringset_t selectedDirs; // The directory selected in the tree
Workspace repo;
Workspace & getRepo() { return repo; }
Workspace workspace;
Workspace & getWorkspace() { return workspace; }
Bridge & fossil() { return repo.fossil(); }
const Bridge & fossil() const { return repo.fossil(); }
Bridge & fossil() { return workspace.fossil(); }
const Bridge & fossil() const { return workspace.fossil(); }
Settings &settings;
QStringList workspaceHistory;