From 4629d59ae52c5d7f0e4d79f412291097c8f7fc40 Mon Sep 17 00:00:00 2001 From: Musuroi David-Gabriel Date: Thu, 8 May 2025 15:26:26 +0300 Subject: [PATCH] tdf#143148 Use #pragma once instead of include guards Change-Id: Ic2a72861d7a0c2daaa942d8644b46d1d261a8257 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/185049 Tested-by: Ilmari Lauhakangas Reviewed-by: Ilmari Lauhakangas Tested-by: Jenkins --- lotuswordpro/source/filter/lwpstory.hxx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lotuswordpro/source/filter/lwpstory.hxx b/lotuswordpro/source/filter/lwpstory.hxx index 809cc2bbb0ad..68b3005c1cda 100644 --- a/lotuswordpro/source/filter/lwpstory.hxx +++ b/lotuswordpro/source/filter/lwpstory.hxx @@ -60,8 +60,7 @@ 2. the content of layout object ************************************************************************/ -#ifndef INCLUDED_LOTUSWORDPRO_SOURCE_FILTER_LWPSTORY_HXX -#define INCLUDED_LOTUSWORDPRO_SOURCE_FILTER_LWPSTORY_HXX +#pragma once #include #include "lwpcontent.hxx" @@ -153,6 +152,4 @@ inline void LwpStory::AddBullStyleName2List(const OUString& rStyleName, sal_uInt m_vBulletStyleNameList.push_back(std::make_pair(rStyleName, nPos)); } -#endif - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */