diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-03 15:12:26 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-04 08:55:56 +0200 |
commit | 2886f830a9c7871974f9afbc1fdc46bbae468811 (patch) | |
tree | b23c06ab94d5937502cfe0ee29c11aab557193b9 /forms | |
parent | c5b995bb09487e2b7626a5920506b07dff390203 (diff) |
idl,framework,forms: inline some use-once typedefs
Change-Id: Icb4908c274ec0778af7ed9fe2d935bf6723fedfb
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/component/GroupManager.hxx | 9 | ||||
-rw-r--r-- | forms/source/xforms/submission/serialization.hxx | 4 |
2 files changed, 4 insertions, 9 deletions
diff --git a/forms/source/component/GroupManager.hxx b/forms/source/component/GroupManager.hxx index 4a07fae95245..c2c17c292fbb 100644 --- a/forms/source/component/GroupManager.hxx +++ b/forms/source/component/GroupManager.hxx @@ -131,15 +131,12 @@ public: const OGroupComp& GetGroupComponent() const { return m_aGroupComp; } }; -typedef std::vector<OGroupCompAcc> OGroupCompAccArr; - - class OGroup { - OGroupCompArr m_aCompArray; - OGroupCompAccArr m_aCompAccArray; + OGroupCompArr m_aCompArray; + std::vector<OGroupCompAcc> m_aCompAccArray; - OUString m_aGroupName; + OUString m_aGroupName; sal_uInt16 m_nInsertPos; // The insertion position of the GroupComps is determind by the Group friend class OGroupLess; diff --git a/forms/source/xforms/submission/serialization.hxx b/forms/source/xforms/submission/serialization.hxx index da61af1e08df..9339d475021a 100644 --- a/forms/source/xforms/submission/serialization.hxx +++ b/forms/source/xforms/submission/serialization.hxx @@ -35,13 +35,11 @@ Serialize an XObject */ -typedef std::map<OUString, OUString> PropMap; - class CSerialization { protected: css::uno::Reference< css::xml::dom::XDocumentFragment > m_aFragment; - PropMap m_properties; + std::map<OUString, OUString> m_properties; public: virtual ~CSerialization() {} |