diff options
author | Tobias Hunger <[email protected]> | 2013-07-23 12:30:17 +0200 |
---|---|---|
committer | Tobias Hunger <[email protected]> | 2013-08-01 11:42:41 +0200 |
commit | 5422b2c4da706c09579543ac98858ee5efe61d75 (patch) | |
tree | 34235bd210ee4793ca0d5def22b634f508330b92 /src/plugins/debugger/debuggerplugin.cpp | |
parent | 54886da9ae7bf0d6daed925a5402876410a0109f (diff) |
Introduce Project::projectFilePath()
Use it instead of retrieving this information from the document.
Change-Id: I809fcb2daf59021cf503c371a5d40d75d7448796
Reviewed-by: Tobias Hunger <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r-- | src/plugins/debugger/debuggerplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index 25ef0454f55..60e479bf940 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -3502,7 +3502,7 @@ void DebuggerPluginPrivate::testProjectLoaded(Project *project) void DebuggerPluginPrivate::testProjectEvaluated() { - QString fileName = m_testProject->document()->filePath(); + QString fileName = m_testProject->projectFilePath(); QVERIFY(!fileName.isEmpty()); qWarning("Project %s loaded", qPrintable(fileName)); connect(ProjectExplorerPlugin::instance()->buildManager(), |