forked from qt-creator/qt-creator
VcsBase: Don't return editor from annotate()
Take int firstLine as last arg instead. Switch the order of 3rd and 4th args as most callers provide lineNumber and don't provide revision. Change-Id: Iab60c1068a4d9829d10219af39bf3dcbf51e37bb Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -931,7 +931,7 @@ bool BazaarPluginPrivate::vcsCreateRepository(const FilePath &directory)
|
||||
|
||||
void BazaarPluginPrivate::vcsAnnotate(const FilePath &file, int line)
|
||||
{
|
||||
m_client.annotate(file.parentDir(), file.fileName(), QString(), line);
|
||||
m_client.annotate(file.parentDir(), file.fileName(), line);
|
||||
}
|
||||
|
||||
VcsCommand *BazaarPluginPrivate::createInitialCheckoutCommand(const QString &url,
|
||||
|
||||
Reference in New Issue
Block a user