summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/debuggerengine.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-05-28 13:49:26 +0200
committerhjk <hjk@qt.io>2019-05-28 12:23:26 +0000
commit473a741c9fcf09febba312464fab8385e2351181 (patch)
tree2d328a090993cb5c5fd34b43e9468bcbf7e4d4d0 /src/plugins/debugger/debuggerengine.h
parent4704f49fbb1201ebf10ab9dbaed0275ff25faba8 (diff)
downloadqt-creator-473a741c9fcf09febba312464fab8385e2351181.tar.gz
Utils: Rename FileName to FilePath
More in line with QFileInfo terminonlogy which appears to be best-of-breed within Qt. Change-Id: I1d051ff1c8363ebd4ee56376451df45216c4c9ab Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/debugger/debuggerengine.h')
-rw-r--r--src/plugins/debugger/debuggerengine.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/debugger/debuggerengine.h b/src/plugins/debugger/debuggerengine.h
index 54eb9fa22a..78826dd518 100644
--- a/src/plugins/debugger/debuggerengine.h
+++ b/src/plugins/debugger/debuggerengine.h
@@ -147,13 +147,13 @@ public:
// Used by Android to avoid false positives on warnOnRelease
bool skipExecutableValidation = false;
bool useTargetAsync = false;
- Utils::FileNameList additionalSearchDirectories;
+ Utils::FilePathList additionalSearchDirectories;
// Used by iOS.
QString platform;
QString deviceSymbolsRoot;
bool continueAfterAttach = false;
- Utils::FileName sysRoot;
+ Utils::FilePath sysRoot;
// Used by general core file debugging. Public access requested in QTCREATORBUG-17158.
QString coreFile;
@@ -177,8 +177,8 @@ public:
bool isSnapshot = false; // Set if created internally.
ProjectExplorer::Abi toolChainAbi;
- Utils::FileName projectSourceDirectory;
- Utils::FileNameList projectSourceFiles;
+ Utils::FilePath projectSourceDirectory;
+ Utils::FilePathList projectSourceFiles;
// Used by Script debugging
QString interpreter;
@@ -567,7 +567,7 @@ public:
class LocationMark : public TextEditor::TextMark
{
public:
- LocationMark(DebuggerEngine *engine, const Utils::FileName &file, int line);
+ LocationMark(DebuggerEngine *engine, const Utils::FilePath &file, int line);
void removedFromEditor() override { updateLineNumber(0); }
void updateIcon();