diff options
author | Arkadiy Illarionov <qarkai@gmail.com> | 2018-05-26 11:58:26 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2018-05-28 09:39:47 +0200 |
commit | f62243c7bb620d821ae84366235111c47a99bae0 (patch) | |
tree | e429299e4ea151af9eb1ce8f6db06f565b359fcd /basic | |
parent | 7f3c2ee6c135773c98ded063bdf10ec8900bf00f (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.hxx | 5 |
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 |