vcsbase: VCSBaseClient::log() now accepts extra options

Merge-request: 323
Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
This commit is contained in:
cerf
2011-05-03 14:44:38 +02:00
committed by Tobias Hunger
parent 01fa9f6c15
commit 326ea080c5
8 changed files with 19 additions and 9 deletions

View File

@@ -317,7 +317,8 @@ void MercurialPlugin::logCurrentFile()
{
const VCSBase::VCSBasePluginState state = currentState();
QTC_ASSERT(state.hasFile(), return)
m_client->log(state.currentFileTopLevel(), QStringList(state.relativeCurrentFile()), true);
m_client->log(state.currentFileTopLevel(), QStringList(state.relativeCurrentFile()),
MercurialClient::ExtraCommandOptions(), true);
}
void MercurialPlugin::revertCurrentFile()