vcl/inc/backend/BackendCapabilities.hxx | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-)
New commits: commit f420528eaf7b02cf755a1a61f41aa98bd9bb2f32 Author: Tomaž Vajngerl <[email protected]> AuthorDate: Tue Jun 8 10:15:05 2021 +0900 Commit: Tomaž Vajngerl <[email protected]> CommitDate: Mon Jun 14 11:44:38 2021 +0200 pragma once - BackendCapabilities Change-Id: Id37ea7e70a81afbe2c4f3590569af863e0f7824f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117103 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <[email protected]> diff --git a/vcl/inc/backend/BackendCapabilities.hxx b/vcl/inc/backend/BackendCapabilities.hxx index 89879ee492e1..2fd49ff47fe5 100644 --- a/vcl/inc/backend/BackendCapabilities.hxx +++ b/vcl/inc/backend/BackendCapabilities.hxx @@ -8,21 +8,14 @@ * */ -#ifndef INCLUDED_VCL_INC_BACKENDCAPABILITIES_HXX -#define INCLUDED_VCL_INC_BACKENDCAPABILITIES_HXX +#pragma once namespace vcl { struct BackendCapabilities { - bool mbSupportsBitmap32; - BackendCapabilities() - : mbSupportsBitmap32(false) - { - } + bool mbSupportsBitmap32 = false; }; } -#endif // INCLUDED_VCL_INC_BACKENDCAPABILITIES_HXX - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
