vcl/inc/unx/x11/xlimits.hxx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-)
New commits: commit a30b3ef7ff4c69272c7c20dc9ea947c15b16216e Author: Behrad Khorram <b.khorramnaz...@gmail.com> AuthorDate: Sun Apr 3 21:05:10 2022 +0430 Commit: Hossein <hoss...@libreoffice.org> CommitDate: Sun Apr 10 22:35:07 2022 +0200 tdf#143148 Use pragma once instead of include guards in xlimits.hxx file Change-Id: Ia54dad6650e4dfd618ebf48a89c2ccd9c588fcb0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132481 Tested-by: Jenkins Reviewed-by: Hossein <hoss...@libreoffice.org> diff --git a/vcl/inc/unx/x11/xlimits.hxx b/vcl/inc/unx/x11/xlimits.hxx index b46ff9bb172a..85a00b17b23c 100644 --- a/vcl/inc/unx/x11/xlimits.hxx +++ b/vcl/inc/unx/x11/xlimits.hxx @@ -7,14 +7,11 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#ifndef INCLUDED_VCL_INC_UNX_X11_XLIMITS_HXX -#define INCLUDED_VCL_INC_UNX_X11_XLIMITS_HXX +#pragma once #include <X11/Xlib.h> #include <vclpluginapi.h> Pixmap limitXCreatePixmap(Display *display, Drawable d, unsigned int width, unsigned int height, unsigned int depth); -#endif // INCLUDED_VCL_INC_UNX_X11_XLIMITS_HXX - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */