forked from qt-creator/qt-creator
Add QML folder in project tree, show files there
Use the full path for folders to sort in the project tree. For virtual folders ensure that the path ensures the sorting we want. Reviewed-By: kkoehne
This commit is contained in:
@@ -69,7 +69,6 @@ bool CMakeProjectNode::addFiles(const ProjectExplorer::FileType fileType, const
|
||||
return false;
|
||||
}
|
||||
|
||||
// TODO: Maybe remove fileType, can be detected by project
|
||||
bool CMakeProjectNode::removeFiles(const ProjectExplorer::FileType fileType, const QStringList &filePaths, QStringList *notRemoved)
|
||||
{
|
||||
Q_UNUSED(fileType)
|
||||
@@ -78,6 +77,13 @@ bool CMakeProjectNode::removeFiles(const ProjectExplorer::FileType fileType, con
|
||||
return false;
|
||||
}
|
||||
|
||||
bool CMakeProjectNode::deleteFiles(const ProjectExplorer::FileType fileType, const QStringList &filePaths)
|
||||
{
|
||||
Q_UNUSED(fileType)
|
||||
Q_UNUSED(filePaths)
|
||||
return false;
|
||||
}
|
||||
|
||||
bool CMakeProjectNode::renameFile(const ProjectExplorer::FileType fileType, const QString &filePath, const QString &newFilePath)
|
||||
{
|
||||
Q_UNUSED(fileType)
|
||||
|
||||
Reference in New Issue
Block a user