diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-02-25 11:26:31 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-02-25 14:19:59 +0100 |
commit | 6145c2082d3d116962dc96602c9ad2d22d62c675 (patch) | |
tree | 4863ece84af8cff932894f321baf3a72577739f0 /logic/shortcuts.h | |
parent | 0391c4bbd10aef403c194910ed6b1f3fd4f8900c (diff) |
logic/shortcuts: remove shared_ptr usage
Diffstat (limited to 'logic/shortcuts.h')
-rw-r--r-- | logic/shortcuts.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/logic/shortcuts.h b/logic/shortcuts.h index 1f57a8fb..4ddc5b34 100644 --- a/logic/shortcuts.h +++ b/logic/shortcuts.h @@ -11,6 +11,7 @@ #include "options/options.hpp" #include "main-settings.hpp" +#include "compat/util.hpp" #ifdef _WIN32 # include "dinput/keybinding-worker.hpp" @@ -33,7 +34,7 @@ struct OPENTRACK_LOGIC_EXPORT Shortcuts final : public QObject public: using K = #ifndef _WIN32 - mem<QxtGlobalShortcut> + QxtGlobalShortcut* #else Key #endif |