diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-07-16 07:15:13 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-07-16 07:15:13 (GMT) |
commit | 14275363e5ae678ca92a6da4778035ca2ad1594c (patch) | |
tree | 3918abae78e9945fc1da8a37534f4bab5e2e82da /src/declarative/qml/qmlerror.h | |
parent | c0a922d3f6e1421b037316a54c62e615473dc5d6 (diff) | |
download | Qt-14275363e5ae678ca92a6da4778035ca2ad1594c.zip Qt-14275363e5ae678ca92a6da4778035ca2ad1594c.tar.gz Qt-14275363e5ae678ca92a6da4778035ca2ad1594c.tar.bz2 |
Add a QmlError::toString() method
Diffstat (limited to 'src/declarative/qml/qmlerror.h')
-rw-r--r-- | src/declarative/qml/qmlerror.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/declarative/qml/qmlerror.h b/src/declarative/qml/qmlerror.h index 57d2f8f..c1a8720 100644 --- a/src/declarative/qml/qmlerror.h +++ b/src/declarative/qml/qmlerror.h @@ -69,6 +69,8 @@ public: void setLine(int); int column() const; void setColumn(int); + + QString toString() const; private: QmlErrorPrivate *d; }; |