Store the encoded file name in a QString.

This commit is contained in:
Roberto Raggi
2009-05-27 15:34:13 +02:00
parent b3bccbc2e8
commit bdf6c3d0be
6 changed files with 15 additions and 16 deletions

View File

@@ -80,10 +80,10 @@ public:
void addFormal(const QByteArray &formal)
{ _formals.append(formal); }
QByteArray fileName() const
QString fileName() const
{ return _fileName; }
void setFileName(const QByteArray &fileName)
void setFileName(const QString &fileName)
{ _fileName = fileName; }
unsigned line() const
@@ -120,7 +120,7 @@ private:
QByteArray _name;
QByteArray _definition;
QVector<QByteArray> _formals;
QByteArray _fileName;
QString _fileName;
unsigned _line;
union