diff options
author | Christian Kamm <[email protected]> | 2010-03-03 15:33:14 +0100 |
---|---|---|
committer | Christian Kamm <[email protected]> | 2010-03-03 15:33:36 +0100 |
commit | fe13a9faecc9ebd7aeb36f3bf4790e044411690a (patch) | |
tree | 51c247c8aa5c0ec76b475e1d66b0117f205c742b /src/libs/qmljs/qmljsinterpreter.cpp | |
parent | 6a49483cfff4b2a3afbdf89d13d06ea719cbaf11 (diff) |
Default initialize FakeMetaMethod correctly.
Reviewed-by: Erik Verbruggen
Diffstat (limited to 'src/libs/qmljs/qmljsinterpreter.cpp')
-rw-r--r-- | src/libs/qmljs/qmljsinterpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/qmljs/qmljsinterpreter.cpp b/src/libs/qmljs/qmljsinterpreter.cpp index 233b46170b4..690b6b0d568 100644 --- a/src/libs/qmljs/qmljsinterpreter.cpp +++ b/src/libs/qmljs/qmljsinterpreter.cpp @@ -136,7 +136,7 @@ public: public: FakeMetaMethod(const QString &name, const QString &returnType = QString()) - : m_name(name), m_returnType(returnType) + : m_name(name), m_returnType(returnType), m_methodTy(Method), m_methodAccess(Public) {} QString methodName() const |