diff options
author | Arkadiy Illarionov <qarkai@gmail.com> | 2018-05-30 10:36:27 +0300 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-06-01 12:30:35 +0200 |
commit | bea47ebdb4bb634ad647e3b653fa7e31d7c4b6ab (patch) | |
tree | d6fbea611d3a7405d9fa05bb92081001d6a4b8e3 /cui | |
parent | bdf5a7b5792cc93cd0a8984cfd8528dfe67b3e70 (diff) |
tdf#96099 Remove some trivial typedef std::vector
Change-Id: Iaba48932dde059c88401ee60f7aac0048a79e9eb
Reviewed-on: https://gerrit.libreoffice.org/55045
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tor Lillqvist <tml@collabora.com>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/inc/cuigaldlg.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cui/source/inc/cuigaldlg.hxx b/cui/source/inc/cuigaldlg.hxx index 0d84f4abacff..bc82540bc3e3 100644 --- a/cui/source/inc/cuigaldlg.hxx +++ b/cui/source/inc/cuigaldlg.hxx @@ -48,7 +48,6 @@ class SearchProgress; class TakeProgress; class TPGalleryThemeProperties; -typedef std::vector< OUString > StringList; typedef std::vector< sal_uLong > TokenList_impl; struct FilterEntry @@ -246,7 +245,7 @@ class TPGalleryThemeProperties : public SfxTabPage VclPtr<GalleryPreview> m_pWndPreview; ExchangeData* pData; - StringList aFoundList; + std::vector<OUString> aFoundList; std::vector< FilterEntry* > aFilterEntryList; Timer aPreviewTimer; |