summaryrefslogtreecommitdiff
path: root/vcl/source/control
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-03 12:34:22 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-08-03 12:16:33 +0000
commita4fd6c4f9e5b010f00ba7cc84a4b2d5d8950813a (patch)
tree6b2aa80c50d3937cfe17053a5da48f19855dcb68 /vcl/source/control
parent5256953397b495e9271cec92cc78514d772acaf5 (diff)
inline some use-once typedefs
Change-Id: I02cbbba56a2ad83e0ac3d806265a7e0d6a29594d Reviewed-on: https://gerrit.libreoffice.org/17495 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl/source/control')
-rw-r--r--vcl/source/control/morebtn.cxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/vcl/source/control/morebtn.cxx b/vcl/source/control/morebtn.cxx
index ec91329e4498..5e7e104e13a9 100644
--- a/vcl/source/control/morebtn.cxx
+++ b/vcl/source/control/morebtn.cxx
@@ -22,13 +22,11 @@
#include <tools/rc.h>
#include <vector>
-typedef ::std::vector< VclPtr<vcl::Window> > ImplMoreWindowList;
-
struct ImplMoreButtonData
{
- ImplMoreWindowList *mpItemList;
- OUString maMoreText;
- OUString maLessText;
+ std::vector< VclPtr<vcl::Window> >* mpItemList;
+ OUString maMoreText;
+ OUString maLessText;
};
void MoreButton::ImplInit( vcl::Window* pParent, WinBits nStyle )