diff options
author | Tobias Hunger <[email protected]> | 2015-06-10 11:39:41 +0200 |
---|---|---|
committer | Tobias Hunger <[email protected]> | 2015-06-11 08:41:01 +0000 |
commit | 5a2459d1e19d9e8d62b6f8b7e0b41bd578fb7617 (patch) | |
tree | c3db38ec6c2455c42bf2160abf9ab1d0a5eae78b /src/plugins/cvs/cvsplugin.cpp | |
parent | 7c8d20ded74bbeab6249b81b34f7078f3f385a81 (diff) |
VcsBase: Make some slots protected and update users accordingly
Change-Id: If38be72e9037126b6b697c5064a07de29a2ef8e5
Reviewed-by: Orgad Shaneh <[email protected]>
Diffstat (limited to 'src/plugins/cvs/cvsplugin.cpp')
-rw-r--r-- | src/plugins/cvs/cvsplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cvs/cvsplugin.cpp b/src/plugins/cvs/cvsplugin.cpp index 74a004ea64f..2b52313f08e 100644 --- a/src/plugins/cvs/cvsplugin.cpp +++ b/src/plugins/cvs/cvsplugin.cpp @@ -330,7 +330,7 @@ bool CvsPlugin::initialize(const QStringList &arguments, QString *errorMessage) command = ActionManager::registerAction(m_deleteAction, CMD_ID_DELETE_FILE, context); command->setAttribute(Command::CA_UpdateText); - connect(m_deleteAction, SIGNAL(triggered()), this, SLOT(promptToDeleteCurrentFile())); + connect(m_deleteAction, &QAction::triggered, this, &CvsPlugin::promptToDeleteCurrentFile); cvsMenu->addAction(command); m_commandLocator->appendCommand(command); |