Gems/GraphModel

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-09-10 20:21:16 -07:00
parent c7a2344738
commit a55dfece64
3 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -137,8 +137,8 @@ namespace MockGraphCanvasServices
~MockExtenderSlotComponent() = default;
// Component overrides ...
void Activate();
void Deactivate();
void Activate() override;
void Deactivate() override;
////
// ExtenderSlotComponent overrides ...
@@ -177,7 +177,7 @@ namespace MockGraphCanvasServices
void SetTooltip(const AZStd::string& tooltip) override;
void SetTranslationKeyedTooltip(const GraphCanvas::TranslationKeyedString& tooltip) override;
const AZStd::string GetTooltip() const override;
void SetShowInOutliner(bool showInOutliner);
void SetShowInOutliner(bool showInOutliner) override;
bool ShowInOutliner() const override;
void AddSlot(const AZ::EntityId& slotId) override;
void RemoveSlot(const AZ::EntityId& slotId) override;
+3 -3
View File
@@ -87,7 +87,7 @@ namespace GraphModelIntegrationTest
const char* GetTitle() const override;
protected:
void RegisterSlots();
void RegisterSlots() override;
AZStd::shared_ptr<TestGraphContext> m_graphContext = nullptr;
};
@@ -108,7 +108,7 @@ namespace GraphModelIntegrationTest
const char* GetTitle() const override;
protected:
void RegisterSlots();
void RegisterSlots() override;
AZStd::shared_ptr<TestGraphContext> m_graphContext = nullptr;
};
@@ -129,7 +129,7 @@ namespace GraphModelIntegrationTest
const char* GetTitle() const override;
protected:
void RegisterSlots();
void RegisterSlots() override;
AZStd::shared_ptr<TestGraphContext> m_graphContext = nullptr;
};