summaryrefslogtreecommitdiff
path: root/filter/source/config/cache/filterfactory.hxx
diff options
context:
space:
mode:
authorArkadiy Illarionov <qarkai@gmail.com>2018-05-30 10:36:27 +0300
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-06-01 12:30:35 +0200
commitbea47ebdb4bb634ad647e3b653fa7e31d7c4b6ab (patch)
treed6fbea611d3a7405d9fa05bb92081001d6a4b8e3 /filter/source/config/cache/filterfactory.hxx
parentbdf5a7b5792cc93cd0a8984cfd8528dfe67b3e70 (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 'filter/source/config/cache/filterfactory.hxx')
-rw-r--r--filter/source/config/cache/filterfactory.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/filter/source/config/cache/filterfactory.hxx b/filter/source/config/cache/filterfactory.hxx
index c0e9a34d5aa3..8548a14a7b0e 100644
--- a/filter/source/config/cache/filterfactory.hxx
+++ b/filter/source/config/cache/filterfactory.hxx
@@ -93,12 +93,12 @@ class FilterFactory : public ::cppu::ImplInheritanceHelper< BaseContainer
@return A string list of internal filter names, including
all filters, which match this query.
*/
- OUStringList impl_queryMatchByDocumentService(const QueryTokenizer& lTokens) const;
+ std::vector<OUString> impl_queryMatchByDocumentService(const QueryTokenizer& lTokens) const;
/** TODO document me
*/
- OUStringList impl_getListOfInstalledModules() const;
+ std::vector<OUString> impl_getListOfInstalledModules() const;
/** @short implement the container string query:
@@ -110,12 +110,12 @@ class FilterFactory : public ::cppu::ImplInheritanceHelper< BaseContainer
@return A string list of internal filter names, including
all filters, which match this query.
*/
- OUStringList impl_getSortedFilterList(const QueryTokenizer& lTokens) const;
+ std::vector<OUString> impl_getSortedFilterList(const QueryTokenizer& lTokens) const;
/** TODO document me
*/
- OUStringList impl_getSortedFilterListForModule(const OUString& sModule,
+ std::vector<OUString> impl_getSortedFilterListForModule(const OUString& sModule,
sal_Int32 nIFlags,
sal_Int32 nEFlags) const;
@@ -129,7 +129,7 @@ class FilterFactory : public ::cppu::ImplInheritanceHelper< BaseContainer
@return A string list of internal filter names.
Can be empty.
*/
- OUStringList impl_readSortedFilterListFromConfig(const OUString& sModule) const;
+ std::vector<OUString> impl_readSortedFilterListFromConfig(const OUString& sModule) const;
// static uno helper!