tdf#143148: Replace include guards with #pragma once in XpmReader.hxx

Change-Id: I2708f103cb9e63294cd2ee056dc490c734285a31
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/177487
Tested-by: Jenkins
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
This commit is contained in:
Manish 2024-11-28 11:04:15 +05:30 committed by Ilmari Lauhakangas
parent b944488aad
commit c73e52d295

View file

@ -17,8 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#ifndef INCLUDED_VCL_SOURCE_FILTER_IXPM_XPMREAD_HXX #pragma once
#define INCLUDED_VCL_SOURCE_FILTER_IXPM_XPMREAD_HXX
#include <tools/stream.hxx> #include <tools/stream.hxx>
#include <vcl/dllapi.h> #include <vcl/dllapi.h>
@ -27,6 +26,4 @@ class Graphic;
VCL_DLLPUBLIC bool ImportXPM(SvStream& rStream, Graphic& rGraphic); VCL_DLLPUBLIC bool ImportXPM(SvStream& rStream, Graphic& rGraphic);
#endif // INCLUDED_VCL_SOURCE_FILTER_IXPM_XPMREAD_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */