Implemented the Handle assignment operators properly 78/25878/2
authorPaul Wisbey <p.wisbey@samsung.com>
Mon, 11 Aug 2014 17:10:30 +0000 (18:10 +0100)
committerPaul Wisbey <p.wisbey@samsung.com>
Mon, 11 Aug 2014 17:14:37 +0000 (18:14 +0100)
commit3f223606ac58e428fd77f7564190117e13427efb
tree1fe771d23884d7c1e7bfa298d71c79107a9b4f99
parentaaa7b16f1867cbe6d4867ea23f2e3637ced966a4
Implemented the Handle assignment operators properly

[Problem] Some unsafe handle assignments are allowed by the compiler e.g.
Actor notAnImageActor = Actor::New();
ImageActor notSafeToUse = notAnImageActor;
[Cause] using BaseHandle::operator= is unsafe
[Solution] Implemented the Handle assignment operators properly

Change-Id: I0df98636a08f49afbf195f0ee9f7d4f7bdbfdc5a
adaptors/common/color-controller.cpp
adaptors/common/orientation.cpp
adaptors/common/style-monitor.cpp
adaptors/common/timer.cpp
adaptors/common/window.cpp
adaptors/public-api/color-controller.h
adaptors/public-api/orientation.h
adaptors/public-api/style-monitor.h
adaptors/public-api/timer.h
adaptors/public-api/window.h