diff options
author | ihtgoot <ihtgoot@gmail.com> | 2025-09-18 12:48:07 +0530 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2025-09-18 14:42:48 +0200 |
commit | eeefe4bcdcfbf2bd36532a4500c4ad7fd1b3146e (patch) | |
tree | a9ba4274e3a0c0263780880f7e279225ba0aa3cf | |
parent | ef7151c271d14f623759f87d30e452f2e6d66664 (diff) |
tdf#143148: Replace include guard #ifndef with #pragma once
Change-Id: I166c263ec46ae0c10dd6edd0a4e1ccac4df7fb1a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191111
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Jenkins
-rw-r--r-- | vbahelper/source/vbahelper/vbacommandbars.hxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/vbahelper/source/vbahelper/vbacommandbars.hxx b/vbahelper/source/vbahelper/vbacommandbars.hxx index ba7c8cbcd6cb..adf3b7b98f13 100644 --- a/vbahelper/source/vbahelper/vbacommandbars.hxx +++ b/vbahelper/source/vbahelper/vbacommandbars.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 INCLUDED_VBAHELPER_SOURCE_VBAHELPER_VBACOMMANDBARS_HXX -#define INCLUDED_VBAHELPER_SOURCE_VBAHELPER_VBACOMMANDBARS_HXX + +#pragma once #include <ooo/vba/XCommandBar.hpp> #include <ooo/vba/XCommandBars.hpp> @@ -50,6 +50,4 @@ public: virtual css::uno::Sequence<OUString> getServiceNames() override; }; -#endif // INCLUDED_VBAHELPER_SOURCE_VBAHELPER_VBACOMMANDBARS_HXX - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |