Fix config.test
authorMichael Goddard <michael.goddard@nokia.com>
Tue, 25 Oct 2011 05:03:11 +0000 (15:03 +1000)
committerQt by Nokia <qt-info@nokia.com>
Tue, 25 Oct 2011 06:06:15 +0000 (08:06 +0200)
Using "this" in non member function, oops.

Change-Id: I7cda3eea755099af2ff2df7b777e3e228e53e325
Reviewed-by: Sergey Dubitskiy <sergey.dubitskiy@nokia.com>
Reviewed-by: Michael Goddard <michael.goddard@nokia.com>
config.tests/resourcepolicy/main.cpp

index 711945a..693bb9c 100644 (file)
@@ -45,6 +45,6 @@
 
 int main(int argc, char** argv)
 {
-    ResourcePolicy::ResourceSet *set = new ResourcePolicy::ResourceSet("player", this);
+    ResourcePolicy::ResourceSet *set = new ResourcePolicy::ResourceSet("player", 0);
     return 0;
 }