summaryrefslogtreecommitdiffstats
path: root/forms/source/solar
diff options
context:
space:
mode:
authorArkadiy Illarionov <qarkai@gmail.com>2018-06-01 22:59:47 +0300
committerTor Lillqvist <tml@collabora.com>2018-06-03 09:38:42 +0200
commit62667aac83bd743fa98a5eaa946cc8088335f66c (patch)
treeaf4442622bdf7d417a55e69c72d2fe44bfd18f17 /forms/source/solar
parentavoid a deadlock when the crash handler can't acquire SolarMutex (diff)
downloadcore-62667aac83bd743fa98a5eaa946cc8088335f66c.tar.gz
core-62667aac83bd743fa98a5eaa946cc8088335f66c.zip
tdf#96099 Remove some trivial std::vector typedefs
Change-Id: I21171bd90b5e19fe8e5b8f2d125b6dfcb9a8b766 Reviewed-on: https://gerrit.libreoffice.org/55198 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'forms/source/solar')
-rw-r--r--forms/source/solar/control/navtoolbar.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/forms/source/solar/control/navtoolbar.cxx b/forms/source/solar/control/navtoolbar.cxx
index 1eea34edd9b4..af5428305c70 100644
--- a/forms/source/solar/control/navtoolbar.cxx
+++ b/forms/source/solar/control/navtoolbar.cxx
@@ -345,8 +345,7 @@ namespace frm
const ToolBox::ImplToolItems::size_type nItemCount = m_pToolbar->GetItemCount();
// collect the FormFeatures in the toolbar
- typedef ::std::vector< sal_Int16 > FormFeatures;
- FormFeatures aFormFeatures;
+ std::vector<sal_Int16> aFormFeatures;
aFormFeatures.reserve( nItemCount );
for ( ToolBox::ImplToolItems::size_type i=0; i<nItemCount; ++i )