aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp')
-rw-r--r--src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp b/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp
index c5ad414633..668c1d4c53 100644
--- a/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp
+++ b/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp
@@ -197,7 +197,7 @@ QString CdbSymbolPathListEditor::symbolPath(const QString &cacheDir,
return s;
}
-bool CdbSymbolPathListEditor::isSymbolServerPath(const QString &path, QString *cacheDir /* = 0 */)
+bool CdbSymbolPathListEditor::isSymbolServerPath(const QString &path, QString *cacheDir /* = nullptr */)
{
if (!path.startsWith(QLatin1String(symbolServerPrefixC)) || !path.endsWith(QLatin1String(symbolServerPostfixC)))
return false;
@@ -226,7 +226,7 @@ bool CdbSymbolPathListEditor::isSymbolCachePath(const QString &path, QString *ca
int CdbSymbolPathListEditor::indexOfSymbolPath(const QStringList &paths,
CdbSymbolPathListEditor::SymbolPathMode mode,
- QString *cacheDir /* = 0 */)
+ QString *cacheDir /* = nullptr */)
{
const int count = paths.size();
for (int i = 0; i < count; i++) {