summaryrefslogtreecommitdiff
path: root/libresourceqt/src/resource.cpp
diff options
context:
space:
mode:
authorWolf Bergenheim <ext-wolf.2.bergenheim@nokia.com>2010-02-10 14:05:08 +0200
committerWolf Bergenheim <ext-wolf.2.bergenheim@nokia.com>2010-02-10 14:05:08 +0200
commit47c2aa40fca1f951dcbf3f3bf36a8481875cdfab (patch)
treea46d8dc2046b3fc2c2362255c57b2ab77adbfc74 /libresourceqt/src/resource.cpp
parent80042b6e527238d11dd2c955e47b652941c2ba6e (diff)
Fixed Resource, and users of Resource
Diffstat (limited to 'libresourceqt/src/resource.cpp')
-rw-r--r--libresourceqt/src/resource.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libresourceqt/src/resource.cpp b/libresourceqt/src/resource.cpp
index 796a345..c9bd79e 100644
--- a/libresourceqt/src/resource.cpp
+++ b/libresourceqt/src/resource.cpp
@@ -3,14 +3,14 @@
using namespace ResourcePolicy;
Resource::Resource()
- : optional(false), shared(false),
+ : optional(false),
identifier(0), granted(false)
{
identifier = (quint32)this;
}
Resource::Resource(const Resource &other)
- : optional(other.optional), shared(other.shared),
+ : optional(other.optional),
identifier(other.identifier), granted(other.granted)
{
}