summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorArkadiy Illarionov <qarkai@gmail.com>2018-05-26 11:58:26 +0300
committerTor Lillqvist <tml@collabora.com>2018-05-28 09:39:47 +0200
commitf62243c7bb620d821ae84366235111c47a99bae0 (patch)
treee429299e4ea151af9eb1ce8f6db06f565b359fcd /basic
parent7f3c2ee6c135773c98ded063bdf10ec8900bf00f (diff)
tdf#96099 Remove some trivial typedef std::vector
Change-Id: I41fff78c10d46bde50063536d8cf1a3942dbf6af Reviewed-on: https://gerrit.libreoffice.org/54834 Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'basic')
-rw-r--r--basic/source/inc/parser.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/basic/source/inc/parser.hxx b/basic/source/inc/parser.hxx
index 4ff5baf83518..bee2a188c1fc 100644
--- a/basic/source/inc/parser.hxx
+++ b/basic/source/inc/parser.hxx
@@ -26,7 +26,6 @@
#include <vector>
-typedef std::vector< OUString > StringVector;
struct SbiParseStack;
@@ -72,8 +71,8 @@ public:
short nBase; // OPTION BASE-value
bool bExplicit; // true: OPTION EXPLICIT
bool bClassModule; // true: OPTION ClassModule
- StringVector aIfaceVector; // Holds all interfaces implemented by a class module
- StringVector aRequiredTypes; // Types used in Dim As New <type> outside subs
+ std::vector<OUString> aIfaceVector; // Holds all interfaces implemented by a class module
+ std::vector<OUString> aRequiredTypes; // Types used in Dim As New <type> outside subs
# define N_DEF_TYPES 26
SbxDataType eDefTypes[N_DEF_TYPES]; // DEFxxx data types