summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@nokia.com>2011-03-27 20:10:42 (GMT)
committerThiago Macieira <thiago.macieira@nokia.com>2011-03-27 20:15:55 (GMT)
commitc6c08f9d50bd30f9940fdfe054f2c73af663b72b (patch)
tree6547cade42c504138dc404d0b993f33adc225d35 /src
parent09ecb50448bc3255c80764dbc267bb6a77195287 (diff)
downloadQt-c6c08f9d50bd30f9940fdfe054f2c73af663b72b.zip
Qt-c6c08f9d50bd30f9940fdfe054f2c73af663b72b.tar.gz
Qt-c6c08f9d50bd30f9940fdfe054f2c73af663b72b.tar.bz2
Fix warning about unused parameter
Diffstat (limited to 'src')
-rw-r--r--src/declarative/qml/qdeclarativetypenamescriptclass.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/qml/qdeclarativetypenamescriptclass.cpp b/src/declarative/qml/qdeclarativetypenamescriptclass.cpp
index 0314a7a..a7c0b2c 100644
--- a/src/declarative/qml/qdeclarativetypenamescriptclass.cpp
+++ b/src/declarative/qml/qdeclarativetypenamescriptclass.cpp
@@ -152,7 +152,7 @@ QDeclarativeTypeNameScriptClass::property(Object *obj, const Identifier &name)
}
}
-void QDeclarativeTypeNameScriptClass::setProperty(Object *o, const Identifier &n, const QScriptValue &v)
+void QDeclarativeTypeNameScriptClass::setProperty(Object *, const Identifier &n, const QScriptValue &v)
{
Q_ASSERT(object);
Q_ASSERT(!type);