From 45a2d77429d7468f05be24b5f37babf43f7d4f95 Mon Sep 17 00:00:00 2001 From: Richard Huang Date: Tue, 4 Aug 2020 12:11:33 +0100 Subject: [PATCH] Rename OnStage signals and related internal changes Change-Id: Ic6cdf455c1567ad0bb0b662ed14939ea0aac8702 --- .../input/tizen-wayland/input-method-context-impl-ecore-wl.cpp | 4 ++-- dali/internal/input/ubuntu-x11/input-method-context-impl-x.cpp | 4 ++-- dali/internal/input/windows/input-method-context-impl-win.cpp | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dali/internal/input/tizen-wayland/input-method-context-impl-ecore-wl.cpp b/dali/internal/input/tizen-wayland/input-method-context-impl-ecore-wl.cpp index fc21584..88b63a6 100755 --- a/dali/internal/input/tizen-wayland/input-method-context-impl-ecore-wl.cpp +++ b/dali/internal/input/tizen-wayland/input-method-context-impl-ecore-wl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -334,7 +334,7 @@ InputMethodContextEcoreWl::InputMethodContextEcoreWl( Dali::Actor actor ) { ecore_imf_init(); - actor.OnStageSignal().Connect( this, &InputMethodContextEcoreWl::OnStaged ); + actor.OnSceneSignal().Connect( this, &InputMethodContextEcoreWl::OnStaged ); } InputMethodContextEcoreWl::~InputMethodContextEcoreWl() diff --git a/dali/internal/input/ubuntu-x11/input-method-context-impl-x.cpp b/dali/internal/input/ubuntu-x11/input-method-context-impl-x.cpp index f9fe6ae..83e0c22 100755 --- a/dali/internal/input/ubuntu-x11/input-method-context-impl-x.cpp +++ b/dali/internal/input/ubuntu-x11/input-method-context-impl-x.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -161,7 +161,7 @@ InputMethodContextX::InputMethodContextX( Dali::Actor actor ) { ecore_imf_init(); - actor.OnStageSignal().Connect( this, &InputMethodContextX::OnStaged ); + actor.OnSceneSignal().Connect( this, &InputMethodContextX::OnStaged ); } InputMethodContextX::~InputMethodContextX() diff --git a/dali/internal/input/windows/input-method-context-impl-win.cpp b/dali/internal/input/windows/input-method-context-impl-win.cpp index 3437f02..f3deb99 100755 --- a/dali/internal/input/windows/input-method-context-impl-win.cpp +++ b/dali/internal/input/windows/input-method-context-impl-win.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -72,7 +72,7 @@ InputMethodContextWin::InputMethodContextWin( Dali::Actor actor ) mIdleCallbackConnected( false ) { - actor.OnStageSignal().Connect( this, &InputMethodContextWin::OnStaged ); + actor.OnSceneSignal().Connect( this, &InputMethodContextWin::OnStaged ); } InputMethodContextWin::~InputMethodContextWin() -- 2.7.4