Fix build error for 'overloaded-virtual=' 05/295905/1
authorInkyun Kil <inkyun.kil@samsung.com>
Mon, 17 Jul 2023 05:29:36 +0000 (14:29 +0900)
committerInkyun Kil <inkyun.kil@samsung.com>
Mon, 17 Jul 2023 05:29:36 +0000 (14:29 +0900)
- Bind(std::shared_ptr<WlSurface> surface) method was hidden by Bind(const EvasObject& win)

Change-Id: I7edc271dca73e82fd20dc1f293a9041acd0c9439
Signed-off-by: Inkyun Kil <inkyun.kil@samsung.com>
screen_connector_remote_surface_evas_mock/remote_surface_evas.h

index 47acf3c..77d488b 100644 (file)
@@ -44,6 +44,7 @@ class RemoteSurfaceEvas : public RemoteSurface, public IEvasEvent {
       std::shared_ptr<EvasObject> 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() {}