diff options
author | Tobias Hunger <[email protected]> | 2018-07-03 11:49:25 +0200 |
---|---|---|
committer | Tobias Hunger <[email protected]> | 2018-07-11 08:29:19 +0000 |
commit | 05fb67fee72472f04991dc6579ace3b15e510177 (patch) | |
tree | 0a1a2b164f7da20651b8c208b36c3010250b2505 /src/plugins/debugger/debuggerplugin.cpp | |
parent | 6aeb06c8d3889e03180d73db0a472ff619da887f (diff) |
ProjectExplorer: Use unique_ptr to store KitInformation
Change-Id: I406b6bed005fb7455e6ee41d81a2f314584a051a
Reviewed-by: Ulf Hermann <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r-- | src/plugins/debugger/debuggerplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index 06041d474e6..5a272201e86 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -3271,7 +3271,7 @@ bool DebuggerPlugin::initialize(const QStringList &arguments, QString *errorMess mstart->addSeparator(Constants::G_GENERAL); mstart->addSeparator(Constants::G_SPECIAL); - KitManager::registerKitInformation(new DebuggerKitInformation); + KitManager::registerKitInformation<DebuggerKitInformation>(); // Task integration. //: Category under which Analyzer tasks are listed in Issues view |