Removed errors from unimplemented status functions

Updated shader management console trace messages
Renamed document rebuild function to reopen

Signed-off-by: Guthrie Adams <guthadam@amazon.com>
This commit is contained in:
Guthrie Adams
2021-08-13 00:19:43 -05:00
parent 7172c3231e
commit 364ac51502
7 changed files with 13 additions and 18 deletions
@@ -67,7 +67,7 @@ namespace AtomToolsFramework
return false;
}
bool AtomToolsDocument::Rebuild()
bool AtomToolsDocument::Reopen()
{
AZ_Error("AtomToolsDocument", false, "%s not implemented.", __FUNCTION__);
return false;
@@ -100,31 +100,26 @@ namespace AtomToolsFramework
bool AtomToolsDocument::IsOpen() const
{
AZ_Error("AtomToolsDocument", false, "%s not implemented.", __FUNCTION__);
return false;
}
bool AtomToolsDocument::IsModified() const
{
AZ_Error("AtomToolsDocument", false, "%s not implemented.", __FUNCTION__);
return false;
}
bool AtomToolsDocument::IsSavable() const
{
AZ_Error("AtomToolsDocument", false, "%s not implemented.", __FUNCTION__);
return false;
}
bool AtomToolsDocument::CanUndo() const
{
AZ_Error("AtomToolsDocument", false, "%s not implemented.", __FUNCTION__);
return false;
}
bool AtomToolsDocument::CanRedo() const
{
AZ_Error("AtomToolsDocument", false, "%s not implemented.", __FUNCTION__);
return false;
}