diff options
author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2016-05-29 00:20:16 +0300 |
---|---|---|
committer | Orgad Shaneh <orgads@gmail.com> | 2016-06-01 05:49:45 +0000 |
commit | 8641a5e956176a39579fd68cc9e449665c9c8ed5 (patch) | |
tree | 1e989e360c11a9c91f29ffd849a863dc219095ca /src/plugins/macros/actionmacrohandler.h | |
parent | 34a7ff07b78ce3cf8fe57621894e578538d71dcd (diff) | |
download | qt-creator-8641a5e956176a39579fd68cc9e449665c9c8ed5.tar.gz |
Macros: Use Qt5-style connects
The heavy lifting was done by clazy.
Change-Id: I0154e09c1a9e028f3a80772c4c07751f4e282091
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/macros/actionmacrohandler.h')
-rw-r--r-- | src/plugins/macros/actionmacrohandler.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/plugins/macros/actionmacrohandler.h b/src/plugins/macros/actionmacrohandler.h index 77c766d682..28077b2013 100644 --- a/src/plugins/macros/actionmacrohandler.h +++ b/src/plugins/macros/actionmacrohandler.h @@ -32,10 +32,6 @@ #include <QSet> -QT_BEGIN_NAMESPACE -class QSignalMapper; -QT_END_NAMESPACE - namespace Macros { namespace Internal { @@ -49,9 +45,6 @@ public: bool canExecuteEvent(const MacroEvent ¯oEvent); bool executeEvent(const MacroEvent ¯oEvent); -private slots: - void addActionEvent(const QString &id); - private: void registerCommand(Core::Id id); Core::Command *command(const QString &id); @@ -59,7 +52,6 @@ private: private: QSet<Core::Id> m_commandIds; - QSignalMapper *m_mapper; }; } // namespace Internal |