forked from qt-creator/qt-creator
more Id type fixes
Change-Id: I3720946ba5485696822976567d83b4d6cb1fb283 x Change-Id: Iab58bc34bc56371405d132315573b484a533b77c Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -61,7 +61,7 @@ public:
|
||||
explicit GeneratedFilePrivate(const QString &p);
|
||||
QString path;
|
||||
QByteArray contents;
|
||||
QString editorId;
|
||||
Id editorId;
|
||||
bool binary;
|
||||
GeneratedFile::Attributes attributes;
|
||||
};
|
||||
@@ -139,14 +139,14 @@ void GeneratedFile::setBinary(bool b)
|
||||
m_d->binary = b;
|
||||
}
|
||||
|
||||
QString GeneratedFile::editorId() const
|
||||
Id GeneratedFile::editorId() const
|
||||
{
|
||||
return m_d->editorId;
|
||||
}
|
||||
|
||||
void GeneratedFile::setEditorId(const QString &k)
|
||||
void GeneratedFile::setEditorId(const Id &id)
|
||||
{
|
||||
m_d->editorId = k;
|
||||
m_d->editorId = id;
|
||||
}
|
||||
|
||||
bool GeneratedFile::write(QString *errorMessage) const
|
||||
|
||||
Reference in New Issue
Block a user