summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolf Bergenheim <ext-wolf.2.bergenheim@nokia.com>2010-03-08 13:28:32 +0200
committerWolf Bergenheim <ext-wolf.2.bergenheim@nokia.com>2010-03-08 13:28:32 +0200
commit53060a6e6e0b1920fb18f9be1e67eec21f62f9fa (patch)
tree1fed5dccff8950602a8c56c8ff217b5694f640f9
parent7cd15b89a5da8cb7885f6dcb4be2acf562fbb7e7 (diff)
Fixed namespace of resourcesGranted signal parameter
-rw-r--r--resourceqt-client/client.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/resourceqt-client/client.cpp b/resourceqt-client/client.cpp
index 27583fe..968810e 100644
--- a/resourceqt-client/client.cpp
+++ b/resourceqt-client/client.cpp
@@ -159,7 +159,9 @@ bool Client::initialize(uint32_t all, uint32_t optional, bool alwaysReply, bool
updateSet(all, optional, false);
- if (!connect(resourceSet, SIGNAL(resourcesGranted(QList<ResourceType>)), this, SLOT(resourceAcquiredHandler(QList<ResourceType>)))) {
+ if (!connect(resourceSet, SIGNAL(resourcesGranted(QList<ResourcePolicy::ResourceType>)),
+ this, SLOT(resourceAcquiredHandler(QList<ResourcePolicy::ResourceType>))))
+ {
return false;
}