diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-06-12 09:37:23 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-06-12 11:24:08 +0200 |
commit | 7aa1dcc682a54890be2d23a1778758e1ec5b00fc (patch) | |
tree | 95055535b6ac46b5092e5d0c2f5e476fc579dbb0 /include | |
parent | 4c6e11886a9d396bf7be18e9e3209a73c6e303ad (diff) |
rename SfxFilterTupel->SfxFilterTuple
Change-Id: Idbbc5d0b28f7f876a774904d8279d342906b642d
Reviewed-on: https://gerrit.libreoffice.org/55662
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/styfitem.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sfx2/styfitem.hxx b/include/sfx2/styfitem.hxx index 1c72f4dffa94..d8f6057e7513 100644 --- a/include/sfx2/styfitem.hxx +++ b/include/sfx2/styfitem.hxx @@ -27,18 +27,18 @@ #include <svl/style.hxx> #include <vector> -struct SFX2_DLLPUBLIC SfxFilterTupel +struct SFX2_DLLPUBLIC SfxFilterTuple { OUString aName; SfxStyleSearchBits nFlags; - SfxFilterTupel(const OUString& rName, SfxStyleSearchBits nArg) + SfxFilterTuple(const OUString& rName, SfxStyleSearchBits nArg) : aName(rName) , nFlags(nArg) { } }; -typedef std::vector<SfxFilterTupel> SfxStyleFilter; +typedef std::vector<SfxFilterTuple> SfxStyleFilter; class SFX2_DLLPUBLIC SfxStyleFamilyItem { |