Skip to content

Commit

Permalink
Refs #9371 Fix initialiser order warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry Jeffery committed Aug 28, 2014
1 parent 64812eb commit c9f6c2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/Mantid/MantidQt/CustomInterfaces/src/QtReflMainView.cpp
Expand Up @@ -19,8 +19,8 @@ namespace MantidQt
//----------------------------------------------------------------------------------------------
/** Constructor
*/
QtReflMainView::QtReflMainView(QWidget *parent) : UserSubWindow(parent), m_presenter(new ReflNullMainViewPresenter()),
m_save_flag(false), m_saveAs_flag(false), m_addRow_flag(false), m_process_flag(false), m_deleteRow_flag(false)
QtReflMainView::QtReflMainView(QWidget *parent) : UserSubWindow(parent), m_save_flag(false), m_saveAs_flag(false),
m_addRow_flag(false), m_deleteRow_flag(false), m_process_flag(false), m_presenter(new ReflNullMainViewPresenter())
{
}

Expand Down

0 comments on commit c9f6c2d

Please sign in to comment.