diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-05-15 12:06:32 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-05-15 12:50:46 +0000 |
commit | 2bd7767d010401199ad50c2ef2791b53ae03fb03 (patch) | |
tree | a5698e6e668fa8e8a7d7fc1fd088247776d3e11d /basegfx | |
parent | 3efddb093e72c100bc609ec691effb4563af2c20 (diff) |
Resolves fdo#70681: fixincludeguards.pl: all that's left
Change-Id: I3e51a62710bb46c8255fd228d41d9300c90a1fb5
Reviewed-on: https://gerrit.libreoffice.org/9360
Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/inc/hommatrixtemplate.hxx | 6 | ||||
-rw-r--r-- | basegfx/source/inc/stringconversiontools.hxx | 6 | ||||
-rw-r--r-- | basegfx/source/workbench/bezierclip.hxx | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/basegfx/source/inc/hommatrixtemplate.hxx b/basegfx/source/inc/hommatrixtemplate.hxx index 6342677c5216..93c14f2bd4db 100644 --- a/basegfx/source/inc/hommatrixtemplate.hxx +++ b/basegfx/source/inc/hommatrixtemplate.hxx @@ -17,8 +17,8 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#ifndef _HOMMATRIX_TEMPLATE_HXX -#define _HOMMATRIX_TEMPLATE_HXX +#ifndef INCLUDED_BASEGFX_SOURCE_INC_HOMMATRIXTEMPLATE_HXX +#define INCLUDED_BASEGFX_SOURCE_INC_HOMMATRIXTEMPLATE_HXX #include <sal/types.h> #include <basegfx/numeric/ftools.hxx> @@ -602,6 +602,6 @@ namespace basegfx } // namespace internal } // namespace basegfx -#endif /* _HOMMATRIX_TEMPLATE_HXX */ +#endif // INCLUDED_BASEGFX_SOURCE_INC_HOMMATRIXTEMPLATE_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/basegfx/source/inc/stringconversiontools.hxx b/basegfx/source/inc/stringconversiontools.hxx index 96692dcf2bb4..834c0de0465f 100644 --- a/basegfx/source/inc/stringconversiontools.hxx +++ b/basegfx/source/inc/stringconversiontools.hxx @@ -16,8 +16,8 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#ifndef _STRINGCONVERSIONTOOLS_HXX -#define _STRINGCONVERSIONTOOLS_HXX +#ifndef INCLUDED_BASEGFX_SOURCE_INC_STRINGCONVERSIONTOOLS_HXX +#define INCLUDED_BASEGFX_SOURCE_INC_STRINGCONVERSIONTOOLS_HXX #include <sal/types.h> #include <rtl/ustring.hxx> @@ -91,6 +91,6 @@ namespace basegfx } // namespace internal } // namespace basegfx -#endif /* _STRINGCONVERSIONTOOLS_HXX */ +#endif // INCLUDED_BASEGFX_SOURCE_INC_STRINGCONVERSIONTOOLS_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/basegfx/source/workbench/bezierclip.hxx b/basegfx/source/workbench/bezierclip.hxx index b95beaaf3612..bb9153be3680 100644 --- a/basegfx/source/workbench/bezierclip.hxx +++ b/basegfx/source/workbench/bezierclip.hxx @@ -17,8 +17,8 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#ifndef BASEGFX_BEZIERCLIP_HXX -#define BASEGFX_BEZIERCLIP_HXX +#ifndef INCLUDED_BASEGFX_SOURCE_WORKBENCH_BEZIERCLIP_HXX +#define INCLUDED_BASEGFX_SOURCE_WORKBENCH_BEZIERCLIP_HXX #include <vector> @@ -82,6 +82,6 @@ template <typename NumType> bool tolEqual( NumType n1, NumType n2 ) { return tol template <typename NumType> bool tolLessEqual( NumType n1, NumType n2 ) { return tolEqual(n1,n2) || n1<n2; } template <typename NumType> bool tolGreaterEqual( NumType n1, NumType n2 ) { return tolEqual(n1,n2) || n1>n2; } -#endif /* BASEGFX_BEZIERCLIP_HXX */ +#endif // INCLUDED_BASEGFX_SOURCE_WORKBENCH_BEZIERCLIP_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |