forked from qt-creator/qt-creator
Git: Fix whitespace
Change-Id: I9b61d018179449f61fd38de7957fabc1c9bc917d Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
committed by
André Hartmann
parent
2915ee0832
commit
884de236be
@@ -1857,13 +1857,13 @@ bool GitPluginPrivate::vcsOpen(const QString & /*fileName*/)
|
||||
return false;
|
||||
}
|
||||
|
||||
bool GitPluginPrivate::vcsAdd(const QString & fileName)
|
||||
bool GitPluginPrivate::vcsAdd(const QString &fileName)
|
||||
{
|
||||
const QFileInfo fi(fileName);
|
||||
return m_gitClient.synchronousAdd(fi.absolutePath(), {fi.fileName()});
|
||||
}
|
||||
|
||||
bool GitPluginPrivate::vcsDelete(const QString & fileName)
|
||||
bool GitPluginPrivate::vcsDelete(const QString &fileName)
|
||||
{
|
||||
const QFileInfo fi(fileName);
|
||||
return m_gitClient.synchronousDelete(fi.absolutePath(), true, {fi.fileName()});
|
||||
|
Reference in New Issue
Block a user