summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-08-17 09:26:16 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-08-17 14:11:12 +0200
commitdd6db74abddfe27671c2593eefefa871466b02f5 (patch)
tree8d7c9f5d34d1faefec4ff550add51a263b1c4fd6 /cui
parent28beaffba6a0ecaf351c84bed41443a6721d85b6 (diff)
inline some use-once typedefs
Change-Id: I683175c1e788a2a4cfec9504dc8dc3ebfee7c5de Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100858 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/inc/macropg.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/cui/source/inc/macropg.hxx b/cui/source/inc/macropg.hxx
index 5017aeeabfe8..26ea92f65ad5 100644
--- a/cui/source/inc/macropg.hxx
+++ b/cui/source/inc/macropg.hxx
@@ -42,7 +42,6 @@ struct EventDisplayName
{
}
};
-typedef std::vector< EventDisplayName > EventDisplayNames;
class SvxMacroTabPage_;
class SvTabListBox;
@@ -66,7 +65,7 @@ protected:
EventsHash m_appEventsHash;
EventsHash m_docEventsHash;
bool bDocModified, bAppEvents, bInitialized;
- EventDisplayNames aDisplayNames;
+ std::vector< EventDisplayName > aDisplayNames;
SvxMacroTabPage_(weld::Container* pPage, weld::DialogController* pController, const OUString& rUIXMLDescription, const OString& rID, const SfxItemSet& rItemSet);