forked from qt-creator/qt-creator
Project: Use Utils::FileName as return type for projectDirectory(...)
Change-Id: I3ea10aa204b1ea41702edab09884b416cd6d9e06 Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
@@ -55,7 +55,7 @@ TaskFileFactory::TaskFileFactory(QObject * parent) :
|
||||
Core::IDocument *TaskFileFactory::open(const QString &fileName)
|
||||
{
|
||||
ProjectExplorer::Project *project = ProjectExplorer::ProjectExplorerPlugin::currentProject();
|
||||
return open(project ? project->projectDirectory() : QString(), fileName);
|
||||
return open(project ? project->projectDirectory().toString() : QString(), fileName);
|
||||
}
|
||||
|
||||
Core::IDocument *TaskFileFactory::open(const QString &base, const QString &fileName)
|
||||
|
||||
Reference in New Issue
Block a user