diff options
author | Noel Grandin <noel@peralex.com> | 2015-03-23 15:30:00 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-03-24 09:36:58 +0200 |
commit | b2125ae811c2fc2233026e5218a03bc24210a5c1 (patch) | |
tree | 3945a55c8d008a41645f4c05a8f53d93629710f1 /include/sfx2 | |
parent | ecec9afe852d3bca019b6b44a40d8be39e0f58f4 (diff) |
convert FILTER_APPLICATION to enum class
Change-Id: I9ad1d1c9a2d9d538a4cc95f0b65f45f631116916
Diffstat (limited to 'include/sfx2')
-rw-r--r-- | include/sfx2/templateabstractview.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/sfx2/templateabstractview.hxx b/include/sfx2/templateabstractview.hxx index 5e316e10c430..5509374c25b2 100644 --- a/include/sfx2/templateabstractview.hxx +++ b/include/sfx2/templateabstractview.hxx @@ -31,13 +31,13 @@ class SfxDocumentTemplates; -enum FILTER_APPLICATION +enum class FILTER_APPLICATION { - FILTER_APP_NONE, - FILTER_APP_WRITER, - FILTER_APP_CALC, - FILTER_APP_IMPRESS, - FILTER_APP_DRAW + NONE, + WRITER, + CALC, + IMPRESS, + DRAW }; // Display template items depending on the generator application |