X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Fpopup%2Fpopup-impl.cpp;h=cc65de90ecd8f32f828dbb07852b38245820611a;hp=768a9786ad1c770db5f5a34b55257fcaa6c5750e;hb=19b6edb066bc90ab6fd4ce93b9dc49b5224d7815;hpb=f2039d47f9bed8104575da80a2ecf0bb6e37ff8d diff --git a/dali-toolkit/internal/controls/popup/popup-impl.cpp b/dali-toolkit/internal/controls/popup/popup-impl.cpp index 768a978..cc65de9 100644 --- a/dali-toolkit/internal/controls/popup/popup-impl.cpp +++ b/dali-toolkit/internal/controls/popup/popup-impl.cpp @@ -36,6 +36,7 @@ // INTERNAL INCLUDES #include #include +#include #include #include #include @@ -2003,7 +2004,7 @@ void Popup::SetupTouch() std::string Popup::AccessibleImpl::GetNameRaw() { - auto popup = Toolkit::Popup::DownCast(self); + auto popup = Toolkit::Popup::DownCast(Self()); std::string title; Actor popupTitle = popup.GetTitle(); if(popupTitle) @@ -2025,8 +2026,8 @@ std::string Popup::AccessibleImpl::GetNameRaw() Dali::Accessibility::States Popup::AccessibleImpl::CalculateStates() { - auto states = Control::Impl::AccessibleImpl::CalculateStates(); - auto popup = Toolkit::Popup::DownCast(self); + auto states = DevelControl::AccessibleImpl::CalculateStates(); + auto popup = Toolkit::Popup::DownCast(Self()); auto displayState = popup.GetProperty(Toolkit::Popup::Property::DISPLAY_STATE); states[Dali::Accessibility::State::SHOWING] = (displayState == "SHOWN" || displayState == "SHOWING");