aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/breakhandler.cpp
diff options
context:
space:
mode:
authorOrgad Shaneh <[email protected]>2015-01-10 23:40:32 +0200
committerhjk <[email protected]>2015-01-29 11:15:43 +0000
commit8b5dcc13c539e755b67bfb6ae38553534c9b3d11 (patch)
tree6ece649b191598e412049646832a59ae096f850c /src/plugins/debugger/breakhandler.cpp
parent6fd0d4ed339fe656bc68d7b31ba9d8e63955b12a (diff)
Replace QFileInfo::fileName() with FileName::fileName()
Diffstat (limited to 'src/plugins/debugger/breakhandler.cpp')
-rw-r--r--src/plugins/debugger/breakhandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/breakhandler.cpp b/src/plugins/debugger/breakhandler.cpp
index 912bd090fba..f4d0188f26c 100644
--- a/src/plugins/debugger/breakhandler.cpp
+++ b/src/plugins/debugger/breakhandler.cpp
@@ -620,7 +620,7 @@ QVariant BreakpointItem::data(int column, int role) const
if (str.isEmpty() && !m_params.fileName.isEmpty())
str = m_params.fileName;
if (str.isEmpty()) {
- QString s = QFileInfo(str).fileName();
+ QString s = Utils::FileName::fromString(str).fileName();
if (!s.isEmpty())
str = s;
}