diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-09-07 14:01:19 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-09-07 14:03:09 +0100 |
commit | 948350d60c031904c7daffc7be95ef9c146e700c (patch) | |
tree | 3b1ac16f27447ea39e622bb5cf4ac168b188b609 | |
parent | 818d269971e3119047a3bcc78995f4067d9d9ddd (diff) |
WaE: member init order
Change-Id: Idf7def16e5a9bb4a44624dbc1039e7df05d07c40
-rw-r--r-- | cui/source/options/optjava.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cui/source/options/optjava.cxx b/cui/source/options/optjava.cxx index 65bde82fcd42..c1d6bfb9fdd0 100644 --- a/cui/source/options/optjava.cxx +++ b/cui/source/options/optjava.cxx @@ -117,12 +117,11 @@ SvxJavaOptionsPage::SvxJavaOptionsPage( Window* pParent, const SfxItemSet& rSet m_sAccessibilityText( CUI_RES( STR_ACCESSIBILITY ) ), m_sAddDialogText ( CUI_RES( STR_ADDDLGTEXT ) ), - xDialogListener ( new ::svt::DialogClosedListener() ), - m_aExperimental ( this, CUI_RES( FL_EXPERIMENTAL ) ), m_aExperimentalCB ( this, CUI_RES( CB_EXPERIMENTAL ) ), - m_aMacroCB ( this, CUI_RES( CB_MACRO ) ) + m_aMacroCB ( this, CUI_RES( CB_MACRO ) ), + xDialogListener ( new ::svt::DialogClosedListener() ) { m_aJavaEnableCB.SetClickHdl( LINK( this, SvxJavaOptionsPage, EnableHdl_Impl ) ); m_aJavaList.SetCheckButtonHdl( LINK( this, SvxJavaOptionsPage, CheckHdl_Impl ) ); |