Commit dfe6a9b2 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

oleaut32/tests: Constify some character strings.

parent 8a4e5ec6
......@@ -1195,7 +1195,7 @@ static void test_typelibmarshal(void)
{
static const WCHAR szCat[] = { 'C','a','t',0 };
static const WCHAR szTestTest[] = { 'T','e','s','t','T','e','s','t',0 };
static WCHAR szSuperman[] = { 'S','u','p','e','r','m','a','n',0 };
static const WCHAR szSuperman[] = { 'S','u','p','e','r','m','a','n',0 };
HRESULT hr;
IKindaEnumWidget *pKEW = KindaEnumWidget_Create();
IWidget *pWidget;
......
......@@ -1529,8 +1529,8 @@ static void test_CreateTypeLib(SYSKIND sys) {
static OLECHAR interface3W[] = {'i','n','t','e','r','f','a','c','e','3',0};
static OLECHAR dualW[] = {'d','u','a','l',0};
static OLECHAR coclassW[] = {'c','o','c','l','a','s','s',0};
static WCHAR defaultW[] = {'d','e','f','a','u','l','t',0x3213,0};
static WCHAR defaultQW[] = {'d','e','f','a','u','l','t','?',0};
static const WCHAR defaultW[] = {'d','e','f','a','u','l','t',0x3213,0};
static const WCHAR defaultQW[] = {'d','e','f','a','u','l','t','?',0};
static OLECHAR func1W[] = {'f','u','n','c','1',0};
static OLECHAR func2W[] = {'f','u','n','c','2',0};
static OLECHAR prop1W[] = {'P','r','o','p','1',0};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment