summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2020-04-14 20:48:56 +0200
committerTomaž Vajngerl <quikee@gmail.com>2020-04-26 07:34:00 +0200
commit6e89344e19715caa39a1f78cf4ba71c67af9f2e4 (patch)
tree9b5d77b9a6b996263f69a0009c723ad6b9672529 /vcl
parentf924658e45f256544e43c3fdb2af9b585d0f0933 (diff)
use pragma once
Change-Id: Ia78cc4ee565a5f39835499764b1f2d0a2a72c5ba Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92904 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/filter/jpeg/Exif.hxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/vcl/source/filter/jpeg/Exif.hxx b/vcl/source/filter/jpeg/Exif.hxx
index 47c34e427810..6052a44842da 100644
--- a/vcl/source/filter/jpeg/Exif.hxx
+++ b/vcl/source/filter/jpeg/Exif.hxx
@@ -17,12 +17,12 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#ifndef INCLUDED_VCL_SOURCE_FILTER_JPEG_EXIF_HXX
-#define INCLUDED_VCL_SOURCE_FILTER_JPEG_EXIF_HXX
+#pragma once
#include <tools/stream.hxx>
namespace exif {
+
enum Orientation {
TOP_LEFT = 1,
TOP_RIGHT = 2,
@@ -80,6 +80,4 @@ public:
};
-#endif // INCLUDED_VCL_SOURCE_FILTER_JPEG_EXIF_HXX
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */