X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=base%2Fdali-toolkit%2Finternal%2Fcontrols%2Fstyle-change-processor.h;h=062bd5e7bcb0d5ad6efa051187d89080a132791e;hp=eca3a03bbe8a03b6f4621d7f044f04a1bc11201e;hb=cf229fa2e4f00e5fe727eab2d215868bf79ac524;hpb=8eb92d99dfc9cb3954f6802abdd9d438ef47eba5 diff --git a/base/dali-toolkit/internal/controls/style-change-processor.h b/base/dali-toolkit/internal/controls/style-change-processor.h index eca3a03..062bd5e 100644 --- a/base/dali-toolkit/internal/controls/style-change-processor.h +++ b/base/dali-toolkit/internal/controls/style-change-processor.h @@ -26,11 +26,11 @@ namespace Dali namespace Toolkit { -class ControlImpl; - namespace Internal { +class Control; + /** * This observes and processes when any style changes occur. When they do occur, it traverses through * all registered controls and calls the StyleChanged method. @@ -54,13 +54,13 @@ public: * Registers a control with the StyleChangeProcessor. * @param[in] control The raw Control pointer. */ - static void Register( ControlImpl* control ); + static void Register( Control* control ); /** * Unregisters a control from the StyleChangeProcessor. * @param[in] control The raw Control pointer. */ - static void Unregister( ControlImpl* control ); + static void Unregister( Control* control ); public: @@ -112,8 +112,8 @@ private: private: - unsigned int mCount; ///< The reference count - std::vector mControls; ///< Stores all registered controls. + unsigned int mCount; ///< The reference count + std::vector mControls; ///< Stores all registered controls. }; } // namespace Internal