summaryrefslogtreecommitdiffstats
path: root/extensions
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 /extensions
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 'extensions')
-rw-r--r--extensions/source/bibliography/general.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/extensions/source/bibliography/general.cxx b/extensions/source/bibliography/general.cxx
index bc86e4fa9d35..8bb6a9262f3e 100644
--- a/extensions/source/bibliography/general.cxx
+++ b/extensions/source/bibliography/general.cxx
@@ -635,12 +635,10 @@ bool BibGeneralPage::HandleShortCutKey( const KeyEvent& rKeyEvent )
sal_Int16 i;
- typedef std::vector< sal_Int16 > sal_Int16_vector;
-
- sal_Int16_vector::size_type nFocused = 0xFFFF; // index of focused in vector, no one focused initial
+ std::vector<sal_Int16>::size_type nFocused = 0xFFFF; // index of focused in vector, no one focused initial
DBG_ASSERT( nFocused > 0, "*BibGeneralPage::HandleShortCutKey(): size_type works not as expected!" );
- sal_Int16_vector aMatchList;
+ std::vector<sal_Int16> aMatchList;
for( i = 0 ; i < FIELD_COUNT ; ++i )
{