summaryrefslogtreecommitdiff
path: root/shell/source
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-06-03 11:20:22 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-06-06 19:16:40 +0000
commitc2034f3993ab0e6f4550f3059b3229bc319b6b56 (patch)
treea9686292b74bc75bfeb09a733f08cf97183631a1 /shell/source
parent0ed60a973753d143158c5b17c781bac07bfc3827 (diff)
fixincludeguards: fix include guards
Change-Id: Ie6e8d4272b0b1d0d2ce93bcbc2e818a9eac1a56b Reviewed-on: https://gerrit.libreoffice.org/9629 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'shell/source')
-rw-r--r--shell/source/win32/shlxthandler/ooofilt/ooofilt.hxx8
-rw-r--r--shell/source/win32/shlxthandler/ooofilt/propspec.hxx8
2 files changed, 10 insertions, 6 deletions
diff --git a/shell/source/win32/shlxthandler/ooofilt/ooofilt.hxx b/shell/source/win32/shlxthandler/ooofilt/ooofilt.hxx
index 7c3d58e19a3c..68c581267781 100644
--- a/shell/source/win32/shlxthandler/ooofilt/ooofilt.hxx
+++ b/shell/source/win32/shlxthandler/ooofilt/ooofilt.hxx
@@ -17,15 +17,15 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#ifndef INCLUDED_SHELL_SOURCE_WIN32_SHLXTHANDLER_OOOFILT_OOOFILT_HXX
+#define INCLUDED_SHELL_SOURCE_WIN32_SHLXTHANDLER_OOOFILT_OOOFILT_HXX
+
#include "internal/types.hxx"
//+-------------------------------------------------------------------------
// Contents: LibreOffice filter declarations
// Platform: Windows 2000, Windows XP
-
-#pragma once
-
//+-------------------------------------------------------------------------
// forward declaration
@@ -196,4 +196,6 @@ private:
long m_lRefs; // Reference count
};
+#endif // INCLUDED_SHELL_SOURCE_WIN32_SHLXTHANDLER_OOOFILT_OOOFILT_HXX
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/shell/source/win32/shlxthandler/ooofilt/propspec.hxx b/shell/source/win32/shlxthandler/ooofilt/propspec.hxx
index b9606ddd800f..5959cbf147b1 100644
--- a/shell/source/win32/shlxthandler/ooofilt/propspec.hxx
+++ b/shell/source/win32/shlxthandler/ooofilt/propspec.hxx
@@ -16,11 +16,14 @@
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+
+#ifndef INCLUDED_SHELL_SOURCE_WIN32_SHLXTHANDLER_OOOFILT_PROPSPEC_HXX
+#define INCLUDED_SHELL_SOURCE_WIN32_SHLXTHANDLER_OOOFILT_PROPSPEC_HXX
+
//+-------------------------------------------------------------------------
// File: propspec.hxx
// Contents: C++ wrapper(s) for FULLPROPSPEC
-#pragma once
#if defined _MSC_VER
#pragma warning(push, 1)
#endif
@@ -127,7 +130,6 @@ inline BOOL CFullPropSpec::IsPropertyPropid() const
return( _psProperty.ulKind == PRSPEC_PROPID );
}
-
-
+#endif // INCLUDED_SHELL_SOURCE_WIN32_SHLXTHANDLER_OOOFILT_PROPSPEC_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */