Remove virtual keyword. (#4992)

SetupUI()is called in the AssetEditorMainWindow constructor - it should not be virtual. Derived classes will not receive the call.

Signed-off-by: Andre Mitchell <andre.mitchell@bytesofpi.com>
This commit is contained in:
Andre Mitchell
2021-11-04 12:48:10 -04:00
committed by GitHub
parent 73202c2091
commit 1470d97f58
@@ -89,7 +89,7 @@ namespace GraphCanvas
explicit AssetEditorMainWindow(AssetEditorWindowConfig* config, QWidget* parent = nullptr);
virtual ~AssetEditorMainWindow();
virtual void SetupUI();
void SetupUI();
void SetDropAreaText(AZStd::string_view text);
const EditorId& GetEditorId() const;