diff options
author | hjk <[email protected]> | 2018-02-01 10:59:24 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2018-02-01 10:28:54 +0000 |
commit | 1b87d19a64d45072e72980505a936df38dda4d72 (patch) | |
tree | 8b149ec832de2d8ad67f270ca6adccdce37b5418 /src/plugins/debugger/debuggeractions.cpp | |
parent | 7c417204792fd3c023cf389693d3b3fba8712167 (diff) |
Debugger: Modernize
Mostly nullptr instead of 0, but also a few bits of collateral damage.
Change-Id: I921991272aca921dcdecf302dfff3716e79dfc24
Reviewed-by: David Schulz <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggeractions.cpp')
-rw-r--r-- | src/plugins/debugger/debuggeractions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggeractions.cpp b/src/plugins/debugger/debuggeractions.cpp index ebdc77c9d02..791985588c9 100644 --- a/src/plugins/debugger/debuggeractions.cpp +++ b/src/plugins/debugger/debuggeractions.cpp @@ -106,7 +106,7 @@ DebuggerSettings::DebuggerSettings() const QString debugModeGroup = QLatin1String(debugModeSettingsGroupC); const QString cdbSettingsGroup = QLatin1String(cdbSettingsGroupC); - SavedAction *item = 0; + SavedAction *item = nullptr; item = new SavedAction(this); insertItem(SettingsDialog, item); |