summaryrefslogtreecommitdiff
path: root/libresourceqt/src/resource.cpp
diff options
context:
space:
mode:
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)
{
}