Gems/GraphModel
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user