Skip to content

Commit

Permalink
Re #5466. Remove member variable that isn't used, but is leaked.
Browse files Browse the repository at this point in the history
  • Loading branch information
RussellTaylor committed Jun 18, 2012
1 parent 3b72aa4 commit a5de66e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
3 changes: 0 additions & 3 deletions Code/Mantid/MantidQt/API/inc/MantidQtAPI/AlgorithmDialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -291,9 +291,6 @@ protected slots:

/// A map to keep track of replace workspace button presses
QHash<QPushButton*, int> m_wsbtn_tracker;

/// A signal mapper
QSignalMapper *m_signal_mapper;
//@}
};

Expand Down
3 changes: 1 addition & 2 deletions Code/Mantid/MantidQt/API/src/AlgorithmDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ AlgorithmDialog::AlgorithmDialog(QWidget* parent) :
QDialog(parent), m_algorithm(NULL), m_algName(""), m_algProperties(),
m_propertyValueMap(), m_tied_properties(), m_forScript(false), m_python_arguments(),
m_enabled(), m_disabled(), m_strMessage(""), m_msgAvailable(false), m_isInitialized(false), m_showHidden(true),
m_validators(), m_noValidation(), m_inputws_opts(), m_outputws_fields(), m_wsbtn_tracker(),
m_signal_mapper(new QSignalMapper())
m_validators(), m_noValidation(), m_inputws_opts(), m_outputws_fields(), m_wsbtn_tracker()
{
}

Expand Down

0 comments on commit a5de66e

Please sign in to comment.