summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-05-29 15:04:53 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-06-02 08:39:44 +0200
commit468e8d53fbb07dce271a1f7fabf5711993e01eb7 (patch)
tree60a0474d2789904e17ff22623f01175c11836647 /forms
parente9dbdc9fc6ff943650e6e18986ed1cce913971ef (diff)
inline some use-once typedefs
Change-Id: I335e0c5cf7944efa487e4535a9e6a5baab2f36dd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95140 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/GroupManager.hxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/forms/source/component/GroupManager.hxx b/forms/source/component/GroupManager.hxx
index 10ce1fc8f173..d3734b751d28 100644
--- a/forms/source/component/GroupManager.hxx
+++ b/forms/source/component/GroupManager.hxx
@@ -104,8 +104,6 @@ public:
sal_Int16 GetTabIndex() const { return m_nTabIndex; }
};
-typedef std::vector<OGroupComp> OGroupCompArr;
-
class OGroupComp;
class OGroupCompAcc
@@ -126,7 +124,7 @@ public:
class OGroup final
{
- OGroupCompArr m_aCompArray;
+ std::vector<OGroupComp> m_aCompArray;
std::vector<OGroupCompAcc> m_aCompAccArray;
OUString m_aGroupName;