more fixes
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -866,7 +866,7 @@ namespace AzFramework
|
||||
|
||||
FileIsReadOnlyResponse() = default;
|
||||
FileIsReadOnlyResponse(bool isReadOnly);
|
||||
unsigned int GetMessageType() const;
|
||||
unsigned int GetMessageType() const override;
|
||||
|
||||
bool m_isReadOnly;
|
||||
};
|
||||
@@ -945,7 +945,7 @@ namespace AzFramework
|
||||
|
||||
FileModTimeRequest() = default;
|
||||
FileModTimeRequest(const AZ::OSString& filePath);
|
||||
unsigned int GetMessageType() const;
|
||||
unsigned int GetMessageType() const override;
|
||||
|
||||
AZ::OSString m_filePath;
|
||||
};
|
||||
|
||||
@@ -195,7 +195,7 @@ namespace AzFramework
|
||||
TmMsgCallback(const MsgCB& cb = NULL)
|
||||
: m_cb(cb) {}
|
||||
|
||||
virtual void OnReceivedMsg(TmMsgPtr msg)
|
||||
void OnReceivedMsg(TmMsgPtr msg) override
|
||||
{
|
||||
if (m_cb)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user