Gems/GraphCanvas
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -65,7 +65,7 @@ namespace GraphCanvas
|
||||
////
|
||||
|
||||
// NodeNotifications
|
||||
void OnNodeActivated();
|
||||
void OnNodeActivated() override;
|
||||
////
|
||||
|
||||
private:
|
||||
|
||||
@@ -50,9 +50,9 @@ namespace GraphCanvas
|
||||
required.push_back(AZ_CRC("GraphCanvas_StyledGraphicItemService", 0xeae4cdf4));
|
||||
}
|
||||
|
||||
void Init();
|
||||
void Activate();
|
||||
void Deactivate();
|
||||
void Init() override;
|
||||
void Activate() override;
|
||||
void Deactivate() override;
|
||||
////
|
||||
|
||||
// EntityBus
|
||||
@@ -64,7 +64,7 @@ namespace GraphCanvas
|
||||
////
|
||||
|
||||
// NodeNotification
|
||||
void OnNodeActivated();
|
||||
void OnNodeActivated() override;
|
||||
////
|
||||
|
||||
protected:
|
||||
|
||||
@@ -82,7 +82,7 @@ namespace GraphCanvas
|
||||
////
|
||||
|
||||
// NodeNotification
|
||||
void OnAddedToScene(const AZ::EntityId&);
|
||||
void OnAddedToScene(const AZ::EntityId&) override;
|
||||
////
|
||||
|
||||
// CommentRequestBus
|
||||
|
||||
@@ -163,7 +163,7 @@ namespace GraphCanvas
|
||||
void SubmitValue();
|
||||
void UpdateSizePolicies();
|
||||
|
||||
bool sceneEventFilter(QGraphicsItem*, QEvent* event);
|
||||
bool sceneEventFilter(QGraphicsItem*, QEvent* event) override;
|
||||
|
||||
const AZ::EntityId& GetEntityId() const { return m_entityId; }
|
||||
void SetupProxyWidget();
|
||||
|
||||
Reference in New Issue
Block a user