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>
monroegm-disable-blank-issue-2
Andre Mitchell 4 years ago committed by GitHub
parent 73202c2091
commit 1470d97f58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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;

Loading…
Cancel
Save