diff options
author | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2015-11-19 16:41:11 +0100 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2015-11-20 07:45:59 +0000 |
commit | b3e0adf4766da9eee846baec76acae7c6267ba1c (patch) | |
tree | 5b89c90d16eac070f7dca6067105d2f68411c055 /src/plugins/vcsbase/vcsbaseeditor.cpp | |
parent | 83c26bf290181e5efbed9acc6b2aefeae64fe93d (diff) | |
download | qt-creator-b3e0adf4766da9eee846baec76acae7c6267ba1c.tar.gz |
VcsBase: Use Qt5-style connects
The bulk of the heavy lifting was done by clazy
Change-Id: I3d8904d3c5d22aecf5e5baefacc4dd9b77371417
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/vcsbase/vcsbaseeditor.cpp')
-rw-r--r-- | src/plugins/vcsbase/vcsbaseeditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/vcsbase/vcsbaseeditor.cpp b/src/plugins/vcsbase/vcsbaseeditor.cpp index cb1c238aba..aeea85cd5c 100644 --- a/src/plugins/vcsbase/vcsbaseeditor.cpp +++ b/src/plugins/vcsbase/vcsbaseeditor.cpp @@ -1395,7 +1395,7 @@ void VcsBaseEditorWidget::setCommand(VcsCommand *command) d->m_progressIndicator->attachToWidget(this); connect(d->m_command.data(), &VcsCommand::finished, this, &VcsBaseEditorWidget::hideProgressIndicator); - QTimer::singleShot(100, this, SLOT(showProgressIndicator())); + QTimer::singleShot(100, this, &VcsBaseEditorWidget::showProgressIndicator); } } |