diff options
author | Christian Kamm <[email protected]> | 2010-02-17 08:58:33 +0100 |
---|---|---|
committer | Christian Kamm <[email protected]> | 2010-02-17 08:58:33 +0100 |
commit | 4ab2272a89dc4122dce36ecdca2d99a3860fa068 (patch) | |
tree | bbd30ed02c9813aca817b266b4288195755c7033 /src/libs/qmljs/qmljsinterpreter.cpp | |
parent | 669b9c455210d86ff1499b6d92b5488d374af048 (diff) |
Remove unused parameter.
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 010e9c78f9c..34d7ac95f9e 100644 --- a/src/libs/qmljs/qmljsinterpreter.cpp +++ b/src/libs/qmljs/qmljsinterpreter.cpp @@ -2173,7 +2173,7 @@ bool ASTSignalReference::getSourceLocation(QString *fileName, int *line, int *co return true; } -const Value *ASTSignalReference::value(Context *context) const +const Value *ASTSignalReference::value(Context *) const { return engine()->undefinedValue(); } |