From db10e5e61ed9d900d3942efc2eeab33971d0c183 Mon Sep 17 00:00:00 2001 From: Victor Cebollada Date: Mon, 17 Aug 2020 08:38:28 +0100 Subject: [PATCH] Fixes HoverEvent struct/class forward declarations. * Fixes the warning * Fixes the link fail for MS Visual Studio. Change-Id: I3147360500ca7c4ed122c4a569e8c541ebb98183 Signed-off-by: Victor Cebollada --- dali/internal/event/actors/actor-impl.h | 2 +- dali/public-api/actors/actor.h | 2 +- dali/public-api/actors/custom-actor-impl.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dali/internal/event/actors/actor-impl.h b/dali/internal/event/actors/actor-impl.h index 082fd98..a549089 100644 --- a/dali/internal/event/actors/actor-impl.h +++ b/dali/internal/event/actors/actor-impl.h @@ -44,7 +44,7 @@ namespace Dali struct KeyEvent; class TouchData; -struct HoverEvent; +class HoverEvent; struct WheelEvent; namespace Internal diff --git a/dali/public-api/actors/actor.h b/dali/public-api/actors/actor.h index ac5564f..ecf8372 100644 --- a/dali/public-api/actors/actor.h +++ b/dali/public-api/actors/actor.h @@ -50,7 +50,7 @@ struct Degree; class Quaternion; class Layer; class TouchData; -struct HoverEvent; +class HoverEvent; struct WheelEvent; struct Vector2; struct Vector3; diff --git a/dali/public-api/actors/custom-actor-impl.h b/dali/public-api/actors/custom-actor-impl.h index 12b8828..ba59fab 100644 --- a/dali/public-api/actors/custom-actor-impl.h +++ b/dali/public-api/actors/custom-actor-impl.h @@ -45,7 +45,7 @@ class CustomActor; class CustomActorImpl; class RelayoutContainer; struct KeyEvent; -struct HoverEvent; +class HoverEvent; struct WheelEvent; struct Vector2; struct Vector3; -- 2.7.4