summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2021-06-08 10:15:05 +0900
committerTomaž Vajngerl <quikee@gmail.com>2021-06-14 11:44:38 +0200
commitf420528eaf7b02cf755a1a61f41aa98bd9bb2f32 (patch)
tree6ce8643ed632fafe169162b1761d861d10e680ba
parent213a6792990daab666856a532f8212b2601bd28a (diff)
pragma once - BackendCapabilities
Change-Id: Id37ea7e70a81afbe2c4f3590569af863e0f7824f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117103 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
-rw-r--r--vcl/inc/backend/BackendCapabilities.hxx11
1 files changed, 2 insertions, 9 deletions
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: */