Skip to content
Snippets Groups Projects
Commit 191ed0ed authored by Moore's avatar Moore
Browse files

clang-format and comments re #17315

parent a7edbd4a
No related branches found
No related tags found
No related merge requests found
......@@ -626,8 +626,8 @@ private:
boost::shared_ptr<MantidQt::MantidWidgets::QWorkspaceDockView>
m_exploreMantid; // Dock window for manipulating workspaces
AlgorithmDockWidget *m_exploreAlgorithms; // Dock window for using algorithms
RemoteClusterDockWidget
*m_exploreRemoteTasks; // Dock window for using remote tasks
RemoteClusterDockWidget *
m_exploreRemoteTasks; // Dock window for using remote tasks
/// Current fit property browser being used
MantidQt::MantidWidgets::FitPropertyBrowser *m_fitFunction;
/// Default fit property browser (the one docked on the left)
......@@ -668,8 +668,8 @@ private:
// Stores dependent mdi windows. If the 'key' window closes, all 'value' ones
// must be closed as well.
std::unordered_multimap<MdiSubWindow *, MdiSubWindow *> m_mdiDependency;
QMdiSubWindow
*m_vatesSubWindow; ///< Holder for the Vates interface sub-window
QMdiSubWindow *
m_vatesSubWindow; ///< Holder for the Vates interface sub-window
// prevents some repeated code realtating to log names
void formatLogName(QString &label, const QString &wsName);
......
......@@ -397,6 +397,8 @@ void WorkspacePresenter::clearUBMatrix() {
if (alg) {
alg->initialize();
alg->setPropertyValue("Workspace", ws);
// Run in this manner due to Qt dependencies within this method.
// otherwise it would have been implemented here.
view->executeAlgorithmAsync(alg);
} else
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment