Commit 9c07eea9b135baf8b85b1096fccedf4cf1711bd5

Authored by Victor Cebollada
1 parent 4b770add

Revert public API changes. BATCH property.

* Use the BATCH property from the devel API.

Change-Id: Ic61771c4c27f08257c5d2619a38ca3c7f8524c1c
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
examples/homescreen-benchmark/homescreen-benchmark.cpp
@@ -17,6 +17,7 @@ @@ -17,6 +17,7 @@
17 17
18 // EXTERNAL INCLUDES 18 // EXTERNAL INCLUDES
19 #include <dali-toolkit/dali-toolkit.h> 19 #include <dali-toolkit/dali-toolkit.h>
  20 +#include <dali/devel-api/actors/actor-devel.h>
20 #include <sstream> 21 #include <sstream>
21 #include <iostream> 22 #include <iostream>
22 23
@@ -372,7 +373,7 @@ public: @@ -372,7 +373,7 @@ public:
372 373
373 if( mConfig.mTableViewEnabled && mConfig.mBatchingEnabled ) 374 if( mConfig.mTableViewEnabled && mConfig.mBatchingEnabled )
374 { 375 {
375 - page.SetProperty( Actor::Property::BATCH_PARENT, true ); 376 + page.SetProperty( DevelActor::Property::BATCH_PARENT, true );
376 } 377 }
377 } 378 }
378 379