diff options
author | Hieronymous <sudk1896@gmail.com> | 2016-10-16 14:57:40 +0530 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-16 10:41:20 +0000 |
commit | 01dc6d098def20d6db57a13e8b2d79492a051fce (patch) | |
tree | c94279b155c30c1307a0c7712acea4f95441acfd /basic/source/inc | |
parent | 970a66f8c919ea0524f216f40d21b3e2a8c88ccc (diff) |
tdf#96099 Reduce no. of useless typedefs for trivial containers.
Reduced vector< OUString > typedefs in sbintern module.
Change-Id: I5b2fd6f0b5fe0ae538a12ac028a08458c6eb4714
Reviewed-on: https://gerrit.libreoffice.org/29916
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basic/source/inc')
-rw-r--r-- | basic/source/inc/sbintern.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/basic/source/inc/sbintern.hxx b/basic/source/inc/sbintern.hxx index 55d6dd1af5ca..a0ebd19a6c33 100644 --- a/basic/source/inc/sbintern.hxx +++ b/basic/source/inc/sbintern.hxx @@ -43,15 +43,13 @@ public: virtual SbxObject* CreateObject( const OUString& ) override; }; -typedef ::std::vector< OUString > StringVector; - struct SbClassData { SbxArrayRef mxIfaces; // types this module depends on because of use in Dim As New <type> // needed for initialization order of class modules - StringVector maRequiredTypes; + std::vector< OUString > maRequiredTypes; SbClassData(); ~SbClassData() |