From: Inkyun Kil Date: Mon, 17 Jul 2023 05:29:36 +0000 (+0900) Subject: Fix build error for 'overloaded-virtual=' X-Git-Tag: accepted/tizen/unified/20230719.102923~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F05%2F295905%2F1;p=platform%2Fcore%2Fappfw%2Fscreen-connector.git Fix build error for 'overloaded-virtual=' - Bind(std::shared_ptr surface) method was hidden by Bind(const EvasObject& win) Change-Id: I7edc271dca73e82fd20dc1f293a9041acd0c9439 Signed-off-by: Inkyun Kil --- diff --git a/screen_connector_remote_surface_evas_mock/remote_surface_evas.h b/screen_connector_remote_surface_evas_mock/remote_surface_evas.h index 47acf3c..77d488b 100644 --- a/screen_connector_remote_surface_evas_mock/remote_surface_evas.h +++ b/screen_connector_remote_surface_evas_mock/remote_surface_evas.h @@ -44,6 +44,7 @@ class RemoteSurfaceEvas : public RemoteSurface, public IEvasEvent { std::shared_ptr viewerWin, bool mock = false) : RemoteSurface(rid, id, type, nullptr, mock) {} + using RemoteSurface::Bind; virtual void Bind(const EvasObject& win) {} virtual bool IsVisibleArea() const { return false; } virtual void SendMouseUp() {}