summaryrefslogtreecommitdiff
path: root/scripting
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-05-13 14:01:28 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-05-13 17:03:26 +0200
commit601e9d4badd84c3c4824090f1bc39bef3b64cbd1 (patch)
tree90267c806f8967606a0c9769b117f6b881a8c515 /scripting
parent17d4221c047eac47e26465ddc72d13fb89284f57 (diff)
inline some typedefs
Change-Id: I1608e03ff9f6fbc55987010e88897e034b690b3a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115552 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'scripting')
-rw-r--r--scripting/source/stringresource/stringresource.hxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/scripting/source/stringresource/stringresource.hxx b/scripting/source/stringresource/stringresource.hxx
index 6a2a583c3b3e..2cb2e0aa1424 100644
--- a/scripting/source/stringresource/stringresource.hxx
+++ b/scripting/source/stringresource/stringresource.hxx
@@ -81,8 +81,6 @@ struct LocaleItem
{}
};
-typedef std::vector< std::unique_ptr<LocaleItem> > LocaleItemVector;
-
typedef ::cppu::WeakImplHelper<
css::lang::XServiceInfo,
css::resource::XStringResourceManager > StringResourceImpl_BASE;
@@ -100,7 +98,7 @@ protected:
std::vector< std::unique_ptr<LocaleItem> > m_aLocaleItemVector;
std::vector< std::unique_ptr<LocaleItem> > m_aDeletedLocaleItemVector;
- LocaleItemVector m_aChangedDefaultLocaleVector;
+ std::vector< std::unique_ptr<LocaleItem> > m_aChangedDefaultLocaleVector;
bool m_bModified;
bool m_bReadOnly;