mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 04:03:35 +02:00
CR feedback
This commit is contained in:
parent
4b9797c179
commit
19b42b0180
2 changed files with 3 additions and 1 deletions
|
@ -9,6 +9,7 @@
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
//
|
//
|
||||||
|
|
||||||
|
#pragma once
|
||||||
#ifndef hifi_HoverOverlayInterface_h
|
#ifndef hifi_HoverOverlayInterface_h
|
||||||
#define hifi_HoverOverlayInterface_h
|
#define hifi_HoverOverlayInterface_h
|
||||||
|
|
||||||
|
@ -29,7 +30,7 @@ public:
|
||||||
HoverOverlayInterface();
|
HoverOverlayInterface();
|
||||||
|
|
||||||
Q_INVOKABLE QUuid getCurrentHoveredEntity() { return _currentHoveredEntity; }
|
Q_INVOKABLE QUuid getCurrentHoveredEntity() { return _currentHoveredEntity; }
|
||||||
void setCurrentHoveredEntity(const QUuid entityID) { _currentHoveredEntity = entityID; }
|
void setCurrentHoveredEntity(const QUuid& entityID) { _currentHoveredEntity = entityID; }
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void createHoverOverlay(const EntityItemID& entityItemID, const PointerEvent& event);
|
void createHoverOverlay(const EntityItemID& entityItemID, const PointerEvent& event);
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
//
|
//
|
||||||
|
|
||||||
|
#pragma once
|
||||||
#ifndef hifi_HoverOverlayLogging_h
|
#ifndef hifi_HoverOverlayLogging_h
|
||||||
#define hifi_HoverOverlayLogging_h
|
#define hifi_HoverOverlayLogging_h
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue