diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-11-12 11:33:12 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-11-12 11:33:12 +0000 |
commit | 90531f25698e2b861bf761607eaf0798d3935a0d (patch) | |
tree | 2264718b1645d46d155529a55b65a9900b1be5a2 | |
parent | 0758c9ee56539634dbb1f15aad33567b8ee0ef78 (diff) |
WaE, fix member init order
-rw-r--r-- | forms/source/component/GroupManager.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/forms/source/component/GroupManager.cxx b/forms/source/component/GroupManager.cxx index 8e31c5c31..e146c05c4 100644 --- a/forms/source/component/GroupManager.cxx +++ b/forms/source/component/GroupManager.cxx @@ -121,11 +121,11 @@ OGroupComp::OGroupComp(const OGroupComp& _rSource) //------------------------------------------------------------------ OGroupComp::OGroupComp(const Reference<XPropertySet>& rxSet, sal_Int32 nInsertPos ) - :m_xComponent( rxSet ) - ,m_xControlModel(rxSet,UNO_QUERY) - ,m_nPos( nInsertPos ) - ,m_nTabIndex(0) - ,m_aName( OGroupManager::GetGroupName( rxSet ) ) + : m_aName( OGroupManager::GetGroupName( rxSet ) ) + , m_xComponent( rxSet ) + , m_xControlModel(rxSet,UNO_QUERY) + , m_nPos( nInsertPos ) + , m_nTabIndex(0) { if (m_xComponent.is()) { |