diff options
Diffstat (limited to 'src/plugins/debugger/breakpointmarker.cpp')
-rw-r--r-- | src/plugins/debugger/breakpointmarker.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/plugins/debugger/breakpointmarker.cpp b/src/plugins/debugger/breakpointmarker.cpp index 214184f9a6..6cac5a37c2 100644 --- a/src/plugins/debugger/breakpointmarker.cpp +++ b/src/plugins/debugger/breakpointmarker.cpp @@ -71,6 +71,12 @@ void BreakpointMarker::updateLineNumber(int lineNumber) breakHandler()->updateLineNumberFromMarker(m_id, lineNumber); } +void BreakpointMarker::updateFileName(const QString &fileName) +{ + BaseTextMark::updateFileName(fileName); + breakHandler()->updateFileNameFromMarker(m_id, fileName); +} + } // namespace Internal } // namespace Debugger |