[LYN-1731] Removed temporary bus for checking if the new viewport interaction model is enabled.
This commit is contained in:
@@ -759,8 +759,6 @@ struct IEditor
|
||||
|
||||
// reloads the plugins
|
||||
virtual void LoadPlugins() = 0;
|
||||
|
||||
virtual bool IsNewViewportInteractionModelEnabled() const = 0;
|
||||
};
|
||||
|
||||
//! Callback used by editor when initializing for info in UI dialogs
|
||||
|
||||
@@ -1799,11 +1799,6 @@ void CEditorImpl::DestroyQMimeData(QMimeData* data) const
|
||||
delete data;
|
||||
}
|
||||
|
||||
bool CEditorImpl::IsNewViewportInteractionModelEnabled() const
|
||||
{
|
||||
return m_isNewViewportInteractionModelEnabled;
|
||||
}
|
||||
|
||||
IEditorPanelUtils* CEditorImpl::GetEditorPanelUtils()
|
||||
{
|
||||
return m_panelEditorUtils;
|
||||
|
||||
@@ -339,8 +339,6 @@ public:
|
||||
QMimeData* CreateQMimeData() const override;
|
||||
void DestroyQMimeData(QMimeData* data) const override;
|
||||
|
||||
bool IsNewViewportInteractionModelEnabled() const override;
|
||||
|
||||
protected:
|
||||
|
||||
AZStd::string LoadProjectIdFromProjectData();
|
||||
@@ -442,7 +440,5 @@ protected:
|
||||
|
||||
CryMutex m_pluginMutex; // protect any pointers that come from plugins, such as the source control cached pointer.
|
||||
static const char* m_crashLogFileName;
|
||||
|
||||
bool m_isNewViewportInteractionModelEnabled = true;
|
||||
};
|
||||
|
||||
|
||||
@@ -200,7 +200,6 @@ public:
|
||||
MOCK_METHOD0(GetLogFile, ILogFile* ());
|
||||
MOCK_METHOD0(UnloadPlugins, void());
|
||||
MOCK_METHOD0(LoadPlugins, void());
|
||||
MOCK_CONST_METHOD0(IsNewViewportInteractionModelEnabled, bool());
|
||||
MOCK_METHOD1(GetSearchPath, QString(EEditorPathName));
|
||||
MOCK_METHOD0(GetEditorPanelUtils, IEditorPanelUtils* ());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user