Commit 531a83c8cdc4c70fed1a957429d530baad921296

Authored by Adeel Kazmi
Committed by Gerrit Code Review
2 parents 263eea16 edc01704

Merge "Remove handle::operator=(NULL) as it is duplicating handle.Reset() functi…

…onality and thus redundant" into tizen
examples/cluster/cluster-example.cpp
... ... @@ -725,7 +725,7 @@ public:
725 725 if( i->mEffectConstraint )
726 726 {
727 727 cluster.RemoveConstraint(i->mEffectConstraint);
728   - i->mEffectConstraint = 0;
  728 + i->mEffectConstraint.Reset();
729 729 }
730 730 }
731 731  
... ...
examples/radial-menu/radial-sweep-view.h
... ... @@ -133,7 +133,7 @@ public:
133 133 /**
134 134 * Destructor
135 135 */
136   - virtual ~RadialSweepView();
  136 + ~RadialSweepView();
137 137  
138 138 /**
139 139 * Downcast method
... ...