aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/macros/macroevent.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/macros/macroevent.h')
-rw-r--r--src/plugins/macros/macroevent.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/plugins/macros/macroevent.h b/src/plugins/macros/macroevent.h
index b2ca01d2f35..fc5ef38cc68 100644
--- a/src/plugins/macros/macroevent.h
+++ b/src/plugins/macros/macroevent.h
@@ -47,10 +47,7 @@ namespace Internal {
class MacroEvent
{
public:
- MacroEvent();
- MacroEvent(const MacroEvent &other);
- virtual ~MacroEvent();
- MacroEvent& operator=(const MacroEvent &other);
+ MacroEvent() {}
Core::Id id() const;
void setId(Core::Id id);
@@ -62,8 +59,8 @@ public:
void save(QDataStream &stream) const;
private:
- class MacroEventPrivate;
- MacroEventPrivate* d;
+ Core::Id m_id;
+ QMap<quint8, QVariant> m_values;
};
} // namespace Internal