forked from qt-creator/qt-creator
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>
This commit is contained in:
@@ -721,8 +721,8 @@ DebuggerToolTipContext::DebuggerToolTipContext()
|
||||
|
||||
static bool filesMatch(const QString &file1, const QString &file2)
|
||||
{
|
||||
return FileName::fromString(QFileInfo(file1).canonicalFilePath())
|
||||
== FileName::fromString(QFileInfo(file2).canonicalFilePath());
|
||||
return FilePath::fromString(QFileInfo(file1).canonicalFilePath())
|
||||
== FilePath::fromString(QFileInfo(file2).canonicalFilePath());
|
||||
}
|
||||
|
||||
bool DebuggerToolTipContext::matchesFrame(const StackFrame &frame) const
|
||||
|
||||
Reference in New Issue
Block a user