diff options
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/backend/BackendCapabilities.hxx | 11 |
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: */ |