forked from qt-creator/qt-creator
Qt4PriFileNode: Add const to baseVPaths and fullVPaths
Change-Id: Ia36969f0802c96c657079d6f71d49fb484a600ad Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
This commit is contained in:
committed by
Oswald Buddenhagen
parent
cc6c3eab1a
commit
7339ab60e6
@@ -543,7 +543,7 @@ struct InternalNode
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
QStringList Qt4PriFileNode::baseVPaths(QtSupport::ProFileReader *reader, const QString &projectDir)
|
QStringList Qt4PriFileNode::baseVPaths(QtSupport::ProFileReader *reader, const QString &projectDir) const
|
||||||
{
|
{
|
||||||
QStringList result;
|
QStringList result;
|
||||||
if (!reader)
|
if (!reader)
|
||||||
@@ -555,7 +555,8 @@ QStringList Qt4PriFileNode::baseVPaths(QtSupport::ProFileReader *reader, const Q
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
QStringList Qt4PriFileNode::fullVPaths(const QStringList &baseVPaths, QtSupport::ProFileReader *reader, FileType type, const QString &qmakeVariable, const QString &projectDir)
|
QStringList Qt4PriFileNode::fullVPaths(const QStringList &baseVPaths, QtSupport::ProFileReader *reader,
|
||||||
|
FileType type, const QString &qmakeVariable, const QString &projectDir) const
|
||||||
{
|
{
|
||||||
QStringList vPaths;
|
QStringList vPaths;
|
||||||
if (!reader)
|
if (!reader)
|
||||||
|
|||||||
@@ -190,8 +190,9 @@ private:
|
|||||||
bool priFileWritable(const QString &path);
|
bool priFileWritable(const QString &path);
|
||||||
bool saveModifiedEditors();
|
bool saveModifiedEditors();
|
||||||
QStringList formResources(const QString &formFile) const;
|
QStringList formResources(const QString &formFile) const;
|
||||||
QStringList baseVPaths(QtSupport::ProFileReader *reader, const QString &projectDir);
|
QStringList baseVPaths(QtSupport::ProFileReader *reader, const QString &projectDir) const;
|
||||||
QStringList fullVPaths(const QStringList &baseVPaths, QtSupport::ProFileReader *reader, FileType type, const QString &qmakeVariable, const QString &projectDir);
|
QStringList fullVPaths(const QStringList &baseVPaths, QtSupport::ProFileReader *reader,
|
||||||
|
FileType type, const QString &qmakeVariable, const QString &projectDir) const;
|
||||||
void watchFolders(const QSet<QString> &folders);
|
void watchFolders(const QSet<QString> &folders);
|
||||||
|
|
||||||
Qt4Project *m_project;
|
Qt4Project *m_project;
|
||||||
|
|||||||
Reference in New Issue
Block a user