Module: wine Branch: master Commit: 354ddcb382f7dffe515fa72a961b5910839b60dc URL: https://gitlab.winehq.org/wine/wine/-/commit/354ddcb382f7dffe515fa72a961b591...
Author: Dmitry Timoshkov dmitry@baikal.ru Date: Thu Feb 29 11:01:24 2024 +0300
d2d1: Make some strings const.
Signed-off-by: Dmitry Timoshkov dmitry@baikal.ru
---
dlls/d2d1/effect.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/dlls/d2d1/effect.c b/dlls/d2d1/effect.c index 755b2821df4..8dc006c1293 100644 --- a/dlls/d2d1/effect.c +++ b/dlls/d2d1/effect.c @@ -211,7 +211,7 @@ static HRESULT STDMETHODCALLTYPE builtin_factory_stub(IUnknown **effect_impl) return S_OK; }
-static const WCHAR * const _2d_affine_transform_description = +static const WCHAR _2d_affine_transform_description[] = L"<?xml version='1.0'?> \ <Effect> \ <Property name='DisplayName' type='string' value='2D Affine Transform'/> \ @@ -223,7 +223,7 @@ L"<?xml version='1.0'?> \ </Inputs> \ </Effect>";
-static const WCHAR * const _3d_perspective_transform_description = +static const WCHAR _3d_perspective_transform_description[] = L"<?xml version='1.0'?> \ <Effect> \ <Property name='DisplayName' type='string' value='3D Perspective Transform'/> \ @@ -235,7 +235,7 @@ L"<?xml version='1.0'?> </Inputs> \ </Effect>";
-static const WCHAR * const composite_description = +static const WCHAR composite_description[] = L"<?xml version='1.0'?> \ <Effect> \ <Property name='DisplayName' type='string' value='Composite'/> \ @@ -248,7 +248,7 @@ L"<?xml version='1.0'?> \ </Inputs> \ </Effect>";
-static const WCHAR * const crop_description = +static const WCHAR crop_description[] = L"<?xml version='1.0'?> \ <Effect> \ <Property name='DisplayName' type='string' value='Crop'/> \ @@ -260,7 +260,7 @@ L"<?xml version='1.0'?> \ </Inputs> \ </Effect>";
-static const WCHAR * const shadow_description = +static const WCHAR shadow_description[] = L"<?xml version='1.0'?> \ <Effect> \ <Property name='DisplayName' type='string' value='Shadow'/> \ @@ -272,7 +272,7 @@ L"<?xml version='1.0'?> \ </Inputs> \ </Effect>";
-static const WCHAR * const grayscale_description = +static const WCHAR grayscale_description[] = L"<?xml version='1.0'?> \ <Effect> \ <Property name='DisplayName' type='string' value='Grayscale'/> \