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 <ilmari.lauhakangas@libreoffice.org>
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Tested-by: Jenkins
This commit is contained in:
Musuroi David-Gabriel 2025-05-08 15:26:26 +03:00 committed by Ilmari Lauhakangas
parent 7bc7ff06d7
commit 4629d59ae5

View File

@ -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 <memory>
#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: */