Git: Start interactive rebase in topLevel

Change-Id: I99edfed36b12942e64ee1947a46eddd1ca08b9ba
Reviewed-by: Petar Perisin <petar.perisin@gmail.com>
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
Orgad Shaneh
2013-06-05 08:12:52 +03:00
committed by Orgad Shaneh
parent 2ee83d4c9e
commit 63cf15b180
3 changed files with 8 additions and 16 deletions

View File

@@ -405,15 +405,6 @@ QString VcsBasePluginState::topLevel() const
return hasFile() ? data->m_state.currentFileTopLevel : data->m_state.currentProjectTopLevel;
}
QString VcsBasePluginState::currentDirectoryOrTopLevel() const
{
if (hasFile())
return data->m_state.currentFileDirectory;
else if (data->m_state.hasProject())
return data->m_state.currentProjectTopLevel;
return QString();
}
bool VcsBasePluginState::equals(const Internal::State &rhs) const
{
return data->m_state.equals(rhs);