Commit edc0170434e9be44caa681af88b98ecb3bd774e3

Authored by Kimmo Hoikka
1 parent 9974fa3d

Remove handle::operator=(NULL) as it is duplicating handle.Reset() functionality and thus redundant

Change-Id: I7196d3999b0838f479e56a3954db28600d824cbd
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
... ...