diff options
-rw-r--r-- | lib-apps-common/src/Ui/Control.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-apps-common/src/Ui/Control.cpp b/lib-apps-common/src/Ui/Control.cpp index 2156679..b143964 100644 --- a/lib-apps-common/src/Ui/Control.cpp +++ b/lib-apps-common/src/Ui/Control.cpp @@ -113,7 +113,7 @@ Control *Control::findParent(Evas_Object *object, const std::type_info &type) if (auto control = getControl(object, type)) { return control; } - object = efl_parent_get(object); + object = elm_object_parent_widget_get(object); } return nullptr; |